Skip to content

Commit

Permalink
try not mixing stun servers
Browse files Browse the repository at this point in the history
  • Loading branch information
dankoster committed Oct 10, 2024
1 parent 2c7be3b commit f4172a7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/VideoCall.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ export default function VideoCall(props: { room: Room, user: Connection, connect

const servers: RTCConfiguration = {
iceServers: [
{
urls: [
'stun:stun1.l.google.com:19302',
'stun:stun2.l.google.com:19302'
],
},
// {
// urls: [
// 'stun:stun1.l.google.com:19302',
// 'stun:stun2.l.google.com:19302'
// ],
// },
{
urls: "stun:stun.relay.metered.ca:80",
},
Expand Down

0 comments on commit f4172a7

Please sign in to comment.