Cancel keep alive on join room

This commit is contained in:
RobinLinus 2018-09-21 20:15:55 +02:00
parent 0731a21d68
commit e71564a97c

View file

@ -87,10 +87,10 @@ class SnapdropServer {
} }
_leaveRoom(peer) { _leaveRoom(peer) {
this._cancelKeepAlive(peer);
// delete the peer
if (!this._rooms[peer.ip] || !this._rooms[peer.ip][peer.id]) return; if (!this._rooms[peer.ip] || !this._rooms[peer.ip][peer.id]) return;
this._cancelKeepAlive(peer);
// delete the peer
delete this._rooms[peer.ip][peer.id]; delete this._rooms[peer.ip][peer.id];
peer.socket.terminate(); peer.socket.terminate();
@ -137,7 +137,6 @@ class SnapdropServer {
_cancelKeepAlive(peer) { _cancelKeepAlive(peer) {
if (peer.timerId) { if (peer.timerId) {
clearTimeout(peer.timerId); clearTimeout(peer.timerId);
peer.lastBeat = null;
} }
} }
} }