From 61697d3abc5430ad58478b12a9b7fc36d8978881 Mon Sep 17 00:00:00 2001 From: RobinLinus Date: Fri, 21 Sep 2018 20:01:59 +0200 Subject: [PATCH] Cancel keep alive on join room --- server/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server/index.js b/server/index.js index 7cc3626..025ab45 100644 --- a/server/index.js +++ b/server/index.js @@ -53,11 +53,13 @@ class SnapdropServer { } _joinRoom(peer) { - this._cancelKeepAlive(peer); // if room doesn't exist, create it if (!this._rooms[peer.ip]) { this._rooms[peer.ip] = {}; } + if (this._rooms[peer.ip][peer.id]) { + this._cancelKeepAlive(this._rooms[peer.ip][peer.id]); + } // console.log(peer.id, ' joined the room', peer.ip); // notify all other peers @@ -128,6 +130,7 @@ class SnapdropServer { type: 'ping' }); } + this._cancelKeepAlive(peer); peer.timerId = setTimeout(() => this._keepAlive(peer), timeout); }