mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 16:28:38 +09:00
Bug 1464079 - Bring ICE connection state change callback up to spec. r=jib, a=RyanVM
WebRTC
This commit is contained in:
parent
57b3983e17
commit
e659309611
1 changed files with 4 additions and 1 deletions
|
|
@ -1445,7 +1445,10 @@ PeerConnectionObserver.prototype = {
|
|||
break;
|
||||
|
||||
case "IceConnectionState":
|
||||
this.handleIceConnectionStateChange(this._dompc._pc.iceConnectionState);
|
||||
let connState = this._dompc._pc.iceConnectionState;
|
||||
this._dompc._queueTaskWithClosedCheck(() => {
|
||||
this.handleIceConnectionStateChange(connState);
|
||||
});
|
||||
break;
|
||||
|
||||
case "IceGatheringState":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue