Destroy useless peer connections

This commit is contained in:
Pierre HUBERT 2020-04-11 18:03:18 +02:00
parent 5d7f7fc779
commit 3ec29e534d

View File

@ -207,6 +207,10 @@ class CallWindow extends CustomEvents {
if(this.mainPeer) if(this.mainPeer)
this.mainPeer.destroy(); this.mainPeer.destroy();
// Destroy peer connections
for(const el of this.peersEls)
el[1].destroy()
if(propagate) if(propagate)
this.emitEvent("close"); this.emitEvent("close");
} }