From dc856b7abf23000dfe03795774c5b6675d75734d Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Fri, 14 Nov 2025 20:27:40 +0100 Subject: [PATCH] Fix: Restore Google STUN servers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The connection was failing because Google STUN servers were removed. Restored to the working configuration with Google STUN + metered.ca TURN. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/App.jsx | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index e6e01ee..c901370 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -6,30 +6,14 @@ const API_URL = 'https://api.ronde.vu'; const RTC_CONFIG = { iceServers: [ - { - urls: "stun:stun.relay.metered.ca:80", - }, - { - urls: "turn:standard.relay.metered.ca:80", - username: "e03a51621b4f11ffbed3addd", - credential: "QPjJzPau1Ng5S0dq", - }, - { - urls: "turn:standard.relay.metered.ca:80?transport=tcp", - username: "e03a51621b4f11ffbed3addd", - credential: "QPjJzPau1Ng5S0dq", - }, + { urls: 'stun:stun.l.google.com:19302' }, + { urls: 'stun:stun1.l.google.com:19302' }, { urls: "turn:standard.relay.metered.ca:443", username: "e03a51621b4f11ffbed3addd", credential: "QPjJzPau1Ng5S0dq", }, - { - urls: "turns:standard.relay.metered.ca:443?transport=tcp", - username: "e03a51621b4f11ffbed3addd", - credential: "QPjJzPau1Ng5S0dq", - }, - ], + ] }; export default function App() {