1
Fork 0

The up streams rework broke renegotiation. Don't attempt to

renegotiate, just close the stream and open it again.
This commit is contained in:
Juliusz Chroboczek 2021-01-15 22:41:40 +01:00
parent e623442b99
commit 2380e2e183
1 changed files with 3 additions and 6 deletions

View File

@ -1013,12 +1013,11 @@ async function addLocalMedia(id) {
}
let old = id && serverConnection.up[id];
if(old)
old.close();
if(!audio && !video) {
if(old)
old.close();
if(!audio && !video)
return;
}
let constraints = {audio: audio, video: video};
/** @type {MediaStream} */
@ -1027,8 +1026,6 @@ async function addLocalMedia(id) {
stream = await navigator.mediaDevices.getUserMedia(constraints);
} catch(e) {
displayError(e);
if(old)
old.close();
return;
}