mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2026-04-18 15:22:16 +00:00
Merge remote-tracking branch 'origin/master' into dev
# Conflicts: # server/index.js
This commit is contained in:
@@ -53,6 +53,7 @@ class SnapdropServer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_joinRoom(peer) {
|
_joinRoom(peer) {
|
||||||
|
this._cancelKeepAlive(peer);
|
||||||
// if room doesn't exist, create it
|
// if room doesn't exist, create it
|
||||||
if (!this._rooms[peer.ip]) {
|
if (!this._rooms[peer.ip]) {
|
||||||
this._rooms[peer.ip] = {};
|
this._rooms[peer.ip] = {};
|
||||||
@@ -84,8 +85,8 @@ class SnapdropServer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_leaveRoom(peer) {
|
_leaveRoom(peer) {
|
||||||
// delete the peer
|
|
||||||
this._cancelKeepAlive(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;
|
||||||
|
|
||||||
delete this._rooms[peer.ip][peer.id];
|
delete this._rooms[peer.ip][peer.id];
|
||||||
|
|||||||
Reference in New Issue
Block a user