#2532 renamed to "socket.io:transports"

Sample config:

"socket.io": {
"transports": ["websocket"]
}
This commit is contained in:
psychobunny
2014-12-19 16:49:20 -05:00
parent 6a8a5a9de0
commit da7dcd99a8
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ Sockets.init = function(server) {
io.on('connection', onConnection);
io.listen(server, {
transports: nconf.get('socketioTransports') || ['websocket', 'polling']
transports: nconf.get('socket.io:transports') || ['websocket', 'polling']
});
Sockets.server = io;