@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.js CHANGED
@@ -10899,7 +10899,28 @@ var useWebrtcAudioRuntime = function() {
10899
10899
  8
10900
10900
  ]);
10901
10901
  setUserIsPending(true);
10902
- peerConn = new RTCPeerConnection();
10902
+ peerConn = new RTCPeerConnection({
10903
+ iceServers: [
10904
+ {
10905
+ urls: "stun:stun.l.google.com:19302"
10906
+ },
10907
+ {
10908
+ urls: "stun:stun1.l.google.com:19302"
10909
+ },
10910
+ {
10911
+ urls: "stun:stun2.l.google.com:19302"
10912
+ },
10913
+ {
10914
+ urls: "stun:stun3.l.google.com:19302"
10915
+ },
10916
+ {
10917
+ urls: "stun:stun4.l.google.com:19302"
10918
+ },
10919
+ {
10920
+ urls: "stun:global.stun.twilio.com:3478"
10921
+ }
10922
+ ]
10923
+ });
10903
10924
  pcRef.current = peerConn;
10904
10925
  audioEl = document.createElement("audio");
10905
10926
  audioEl.autoplay = true;