mirror of https://github.com/OpenVidu/openvidu.git
openvidu-browser: minor comment to match same in android & kurento
parent
ddaf34a475
commit
aba3311076
|
@ -149,6 +149,7 @@ export class WebRtcPeer {
|
|||
|
||||
this.pc.addEventListener('signalingstatechange', () => {
|
||||
if (this.pc.signalingState === 'stable') {
|
||||
// SDP Offer/Answer finished. Add stored remote candidates.
|
||||
while (this.iceCandidateList.length > 0) {
|
||||
let candidate = this.iceCandidateList.shift();
|
||||
this.pc.addIceCandidate(<RTCIceCandidate>candidate);
|
||||
|
|
Loading…
Reference in New Issue