1
Fork 0

Protect against stream being null in connection.close.

This may happen if we close a connection before getting any tracks.
This commit is contained in:
Juliusz Chroboczek 2020-05-30 13:15:12 +02:00
parent 65637c1832
commit 50ad751e7d
1 changed files with 8 additions and 6 deletions

View File

@ -56,12 +56,14 @@ Connection.prototype.close = function(sendit) {
while(this.timers.length > 0)
clearInterval(this.timers.pop());
this.stream.getTracks().forEach(t => {
try {
t.stop();
} catch(e) {
}
});
if(this.stream) {
this.stream.getTracks().forEach(t => {
try {
t.stop();
} catch(e) {
}
});
}
this.pc.close();
if(sendit) {