From 08bee1a6f77e2302739f32f750120be4cab3dcb0 Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Fri, 12 Dec 2025 22:19:50 +0100 Subject: [PATCH] Fix missing fqn variable in handleHostService MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Extract serviceFqn from publishResult for ICE candidate operations - Fixes "ReferenceError: fqn is not defined" error 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- src/App.jsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/App.jsx b/src/App.jsx index fa687aa..c837ed9 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -428,6 +428,9 @@ export default function App() { ttl: 300000, // 5 minutes }); + // Get the full service FQN for ICE candidate operations + const fqn = publishResult.serviceFqn; + // Map offerIds to peer connections and setup ICE handlers const offerMapping = {}; const hostConnMap = {};