diff --git a/packages/ts-client/src/webrtc/ConnectionManager.ts b/packages/ts-client/src/webrtc/ConnectionManager.ts index afcc8236..e209dbff 100644 --- a/packages/ts-client/src/webrtc/ConnectionManager.ts +++ b/packages/ts-client/src/webrtc/ConnectionManager.ts @@ -7,6 +7,7 @@ export class ConnectionManager { this.connection = new RTCPeerConnection({ bundlePolicy: 'max-bundle', iceTransportPolicy: 'all', + iceServers: [{ urls: 'stun:stun.l.google.com:19302' }, { urls: "stun:stun.l.google.com:5349" }] }); }