log error onicecandidateerror

This commit is contained in:
schlagmichdoch 2023-03-10 22:21:19 +01:00
parent 7ddd600b0c
commit 1093f4d246
2 changed files with 2 additions and 0 deletions

View file

@ -524,6 +524,7 @@ class RTCPeer extends Peer {
this._peerId = peerId; this._peerId = peerId;
this._conn = new RTCPeerConnection(window.rtcConfig); this._conn = new RTCPeerConnection(window.rtcConfig);
this._conn.onicecandidate = e => this._onIceCandidate(e); this._conn.onicecandidate = e => this._onIceCandidate(e);
this._conn.onicecandidateerror = e => this._onError(e);
this._conn.onconnectionstatechange = _ => this._onConnectionStateChange(); this._conn.onconnectionstatechange = _ => this._onConnectionStateChange();
this._conn.oniceconnectionstatechange = e => this._onIceConnectionStateChange(e); this._conn.oniceconnectionstatechange = e => this._onIceConnectionStateChange(e);
} }

View file

@ -535,6 +535,7 @@ class RTCPeer extends Peer {
this._peerId = peerId; this._peerId = peerId;
this._conn = new RTCPeerConnection(window.rtcConfig); this._conn = new RTCPeerConnection(window.rtcConfig);
this._conn.onicecandidate = e => this._onIceCandidate(e); this._conn.onicecandidate = e => this._onIceCandidate(e);
this._conn.onicecandidateerror = e => this._onError(e);
this._conn.onconnectionstatechange = _ => this._onConnectionStateChange(); this._conn.onconnectionstatechange = _ => this._onConnectionStateChange();
this._conn.oniceconnectionstatechange = e => this._onIceConnectionStateChange(e); this._conn.oniceconnectionstatechange = e => this._onIceConnectionStateChange(e);
} }