diff --git a/src/sdk/conference/channel.js b/src/sdk/conference/channel.js index 4e5b46d3..04ded5ff 100644 --- a/src/sdk/conference/channel.js +++ b/src/sdk/conference/channel.js @@ -862,6 +862,7 @@ export class ConferencePeerConnectionChannel extends EventDispatcher { pcConfiguration.sdpSemantics = 'unified-plan'; pcConfiguration.bundlePolicy = 'max-bundle'; } + pcConfiguration.iceServers = pcConfiguration.iceServers || [{urls: "stun:stun.l.google.com:19302"}]; this._pc = new RTCPeerConnection(pcConfiguration); this._pc.onicecandidate = (event) => { this._onLocalIceCandidate.apply(this, [event]);