You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While testing an update to createOffer in janus.js, I came across a bug. The following code, called a second time (update), will attempt to add the stream again in 'streamsDone' function.
I believe ths issue is here, in streamsDone. config.streamExternal is always true and always setting addTracks = true.
// We're now capturing the new stream: check if we're updating or if it's a new thing
var addTracks = false;
if(!config.myStream || !media.update || config.streamExternal) {
config.myStream = stream;
addTracks = true;
} else { ...
The text was updated successfully, but these errors were encountered:
While testing an update to createOffer in janus.js, I came across a bug. The following code, called a second time (update), will attempt to add the stream again in 'streamsDone' function.
I believe ths issue is here, in streamsDone. config.streamExternal is always true and always setting addTracks = true.
The text was updated successfully, but these errors were encountered: