We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5713b59 commit ae23d4fCopy full SHA for ae23d4f
1 file changed
apps/web/src/components/pair-room-content.tsx
@@ -71,7 +71,7 @@ export function PairRoomContent({
71
const localVideoRef = useRef<HTMLVideoElement>(null);
72
73
74
- // more info: https://gist.github.com/sagivo/3a4b2f2c7ac6e1b5267c2f1f59ac6c6b
+ // more info: https://stackoverflow.com/a/75734789/17825147
75
const rtcConfig = {
76
iceServers: [
77
{
@@ -83,7 +83,18 @@ export function PairRoomContent({
83
"stun:stun4.l.google.com:19302",
84
],
85
},
86
+ {
87
+ urls: "turn:openrelay.metered.ca:80",
88
+ username: "openrelayproject",
89
+ credential: "openrelayproject",
90
+ },
91
92
+ urls: "turn:openrelay.metered.ca:443",
93
94
95
+ }
96
97
+ iceCandidatePoolSize: 10
98
};
99
100
useEffect(() => {
0 commit comments