From 2cbd46b27ab60500143b0a9f2250e8c7616fc6e9 Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Sat, 6 Dec 2025 13:59:30 +0100 Subject: [PATCH] Fix datachannel name to match service pool MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed channel name from 'chat' to 'rondevu-service' to match the channel name created by the service pool. This fixes the connection failure where the offerer's channel and answerer's channel had different names and couldn't connect. The service pool creates a channel named 'rondevu-service', so clients must use the same name to receive that channel. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- src/App.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 878042c..fc6fb6c 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -337,8 +337,8 @@ export default function App() { maxReconnectAttempts: 5 }); - // Create data channel - const channel = connection.createChannel('chat'); + // Create data channel (must match service pool's channel name) + const channel = connection.createChannel('rondevu-service'); // Listen for connection events connection.on('connected', () => {