From b90144d335fa7038c07220100381c6c43bb67fdf Mon Sep 17 00:00:00 2001 From: RuKira Date: Sun, 26 Apr 2026 00:18:14 -0400 Subject: [PATCH] More logging on the RTC Signal --- RelayClient/Resources/Raw/wwwroot/relaySocket.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/RelayClient/Resources/Raw/wwwroot/relaySocket.js b/RelayClient/Resources/Raw/wwwroot/relaySocket.js index 2af41d4..c17f052 100644 --- a/RelayClient/Resources/Raw/wwwroot/relaySocket.js +++ b/RelayClient/Resources/Raw/wwwroot/relaySocket.js @@ -27,11 +27,15 @@ }, receiveRtcSignal(rawJson) { + LogMessage("RelaySocket.receiveRtcSignal hit"); + if (window.RelayRtc?.handleRtcSignal) { + LogMessage("Forwarding RTC signal to RelayRtc.handleRtcSignal"); return window.RelayRtc.handleRtcSignal(rawJson); } if (typeof window.handleRtcSignal === "function") { + LogMessage("Forwarding RTC signal to window.handleRtcSignal"); return window.handleRtcSignal(rawJson); }