Shorten keep alive interval. Closes #97
This commit is contained in:
parent
46ec7c966f
commit
2ba88bd13a
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@
|
||||||
keepAliveTimer = setTimeout(function() {
|
keepAliveTimer = setTimeout(function() {
|
||||||
socket.send(JSON.stringify({type: 1, id: 0}));
|
socket.send(JSON.stringify({type: 1, id: 0}));
|
||||||
resetKeepAliveTimer();
|
resetKeepAliveTimer();
|
||||||
}, 50000);
|
}, 15000);
|
||||||
};
|
};
|
||||||
|
|
||||||
function reconnect(e) {
|
function reconnect(e) {
|
||||||
|
|
Loading…
Reference in a new issue