From c4dfb0762714dbf602ff71212e52ee7af4cb7d77 Mon Sep 17 00:00:00 2001 From: RuKira Date: Sun, 26 Apr 2026 00:09:39 -0400 Subject: [PATCH] Fixed Ice OBJECT not returning/sending correctly. --- RelayClient/Resources/Raw/wwwroot/rtc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RelayClient/Resources/Raw/wwwroot/rtc.js b/RelayClient/Resources/Raw/wwwroot/rtc.js index 2355872..c8ff674 100644 --- a/RelayClient/Resources/Raw/wwwroot/rtc.js +++ b/RelayClient/Resources/Raw/wwwroot/rtc.js @@ -159,7 +159,7 @@ async function ensurePeerConnectionForUser(username) { channelId: currentChannelId, from: currentUsername, to: username, - candidate: event.candidate + candidate: JSON.stringify(event.candidate) }); };