Bug in Room close
parent
1e1f714db5
commit
2e68a7d891
|
|
@ -107,8 +107,8 @@ class Room extends EventEmitter
|
||||||
// Close the peers.
|
// Close the peers.
|
||||||
for (const peer in this._peers)
|
for (const peer in this._peers)
|
||||||
{
|
{
|
||||||
if (!peer.closed)
|
if (!this._peers[peer].closed)
|
||||||
peer.close();
|
this._peers[peer].close();
|
||||||
}
|
}
|
||||||
|
|
||||||
this._peers = null;
|
this._peers = null;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue