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
renegotiate()
{
//Check if we already need to renegotiate
if (!this.renegotiationNeeded && ["initial","stable"].includes(this.state))
{
//Set flag
this.renegotiationNeeded = true;
//On next tick
setTimeout(()=>{
//Clean flag
this.renegotiationNeeded = false;
//Emit event
this.emitter.emit("renegotiationneeded",this.transport);
},0);
}
}
And there in setTimeout you may get an error, because this.emitter is null
The text was updated successfully, but these errors were encountered:
Hello.
In file Emitter.js you have
in file SDPManagerUnified.js you have
But also you have method 'renegotiate'
And there in setTimeout you may get an error, because this.emitter is null
The text was updated successfully, but these errors were encountered: