From 2d1b2e8ff40c80f49d2d5496d87457397219ee87 Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Sat, 15 Nov 2025 14:18:29 +0100 Subject: [PATCH] Test with STUN-only (no TURN) to verify ICE candidate fix --- src/App.jsx | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 2578c84..1bd1ad8 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -6,17 +6,8 @@ const API_URL = 'https://api.ronde.vu'; const RTC_CONFIG = { iceServers: [ - { - urls: ["stun:57.129.61.67:3478"] - }, - { - urls: [ - "turn:57.129.61.67:3478?transport=udp", - "turn:57.129.61.67:3478?transport=tcp" - ], - username: "webrtcuser", - credential: "supersecretpassword" - } + {urls: 'stun:stun.l.google.com:19302'}, + {urls: 'stun:stun1.l.google.com:19302'} ] };