mirror of
https://github.com/RobinLinus/snapdrop.git
synced 2025-05-15 15:10:10 -07:00
Cancel keep alive on join room
This commit is contained in:
parent
23e7c04393
commit
b67afca8ac
@ -53,6 +53,7 @@ class SnapdropServer {
|
||||
}
|
||||
|
||||
_joinRoom(peer) {
|
||||
this._cancelKeepAlive(peer);
|
||||
// if room doesn't exist, create it
|
||||
if (!this._rooms[peer.ip]) {
|
||||
this._rooms[peer.ip] = {};
|
||||
@ -84,8 +85,8 @@ class SnapdropServer {
|
||||
}
|
||||
|
||||
_leaveRoom(peer) {
|
||||
// delete the peer
|
||||
this._cancelKeepAlive(peer);
|
||||
// delete the peer
|
||||
if (!this._rooms[peer.ip] || !this._rooms[peer.ip][peer.id]) return;
|
||||
|
||||
delete this._rooms[peer.ip][peer.id];
|
||||
|
Loading…
x
Reference in New Issue
Block a user