Shorten keep alive interval. Closes #97

This commit is contained in:
lilia 2014-12-06 23:42:51 -08:00
parent 46ec7c966f
commit 2ba88bd13a

View file

@ -36,7 +36,7 @@
keepAliveTimer = setTimeout(function() {
socket.send(JSON.stringify({type: 1, id: 0}));
resetKeepAliveTimer();
}, 50000);
}, 15000);
};
function reconnect(e) {