From 0348ef5d8e0e607ff20ecf128d9b76a87f5f6f09 Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Sat, 15 Nov 2025 13:33:38 +0100 Subject: [PATCH] Switch to ExpressTurn TURN server for testing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Using Google STUN servers and ExpressTurn relay server to test with the bug fix. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/App.jsx | 28 ++++++---------------------- 1 file changed, 6 insertions(+), 22 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 7f02157..22426c5 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -6,29 +6,13 @@ const API_URL = 'https://api.ronde.vu'; const RTC_CONFIG = { iceServers: [ + {urls: 'stun:stun.l.google.com:19302'}, + {urls: 'stun:stun1.l.google.com:19302'}, { - urls: "stun:stun.relay.metered.ca:80", - }, - { - urls: "turn:standard.relay.metered.ca:80", - username: "c53a9c971da5e6f3bc959d8d", - credential: "QaccPqtPPaxyokXp", - }, - { - urls: "turn:standard.relay.metered.ca:80?transport=tcp", - username: "c53a9c971da5e6f3bc959d8d", - credential: "QaccPqtPPaxyokXp", - }, - { - urls: "turn:standard.relay.metered.ca:443", - username: "c53a9c971da5e6f3bc959d8d", - credential: "QaccPqtPPaxyokXp", - }, - { - urls: "turns:standard.relay.metered.ca:443?transport=tcp", - username: "c53a9c971da5e6f3bc959d8d", - credential: "QaccPqtPPaxyokXp", - }, + urls: 'turn:relay1.expressturn.com:3480', + username: 'ef13B1E5PH265HK1N2', + credential: 'TTcTPEy3ndxsS0Gp' + } ] };