diff --git a/public/src/sockets.js b/public/src/sockets.js index e19e2f08ba..722f6785af 100644 --- a/public/src/sockets.js +++ b/public/src/sockets.js @@ -44,7 +44,7 @@ socket = window.socket; socket.on('disconnect', onDisconnect); - socket.on('reconnect_failed', function () { + socket.io.on('reconnect_failed', function () { // Wait ten times the reconnection delay and then start over setTimeout(socket.connect.bind(socket), parseInt(config.reconnectionDelay, 10) * 10); });