Bug in Lobby close()

This commit is contained in:
Håvar Aambø Fosstveit
2020-03-27 21:49:38 +01:00
parent 2e68a7d891
commit 34cdac8102
+2 -2
View File
@@ -26,8 +26,8 @@ class Lobby extends EventEmitter
// Close the peers.
for (const peer in this._peers)
{
if (!peer.closed)
peer.close();
if (!this._peers[peer].closed)
this._peers[peer].close();
}
this._peers = null;