@superinterface/react 3.16.1 → 3.16.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -11076,7 +11076,28 @@ var useWebrtcAudioRuntime = function() {
11076
11076
  8
11077
11077
  ]);
11078
11078
  setUserIsPending(true);
11079
- peerConn = new RTCPeerConnection();
11079
+ peerConn = new RTCPeerConnection({
11080
+ iceServers: [
11081
+ {
11082
+ urls: "stun:stun.l.google.com:19302"
11083
+ },
11084
+ {
11085
+ urls: "stun:stun1.l.google.com:19302"
11086
+ },
11087
+ {
11088
+ urls: "stun:stun2.l.google.com:19302"
11089
+ },
11090
+ {
11091
+ urls: "stun:stun3.l.google.com:19302"
11092
+ },
11093
+ {
11094
+ urls: "stun:stun4.l.google.com:19302"
11095
+ },
11096
+ {
11097
+ urls: "stun:global.stun.twilio.com:3478"
11098
+ }
11099
+ ]
11100
+ });
11080
11101
  pcRef.current = peerConn;
11081
11102
  audioEl = document.createElement("audio");
11082
11103
  audioEl.autoplay = true;