From ff740fb513e24fe05cb90b5d2f8c88cbeb9f9abb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A5=D0=B0=D0=BB=D0=B8=D0=BC=D0=BE=D0=B2=20=D0=A0=D1=83?= =?UTF-8?q?=D1=81=D1=82=D0=B0=D0=BC?= Date: Wed, 11 Mar 2026 01:11:06 +0300 Subject: [PATCH] fix --- apps/web/src/components/CallModal.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/src/components/CallModal.tsx b/apps/web/src/components/CallModal.tsx index e0f665a..5eb3cc6 100644 --- a/apps/web/src/components/CallModal.tsx +++ b/apps/web/src/components/CallModal.tsx @@ -39,6 +39,7 @@ async function getIceServers(): Promise { } try { const data = await api.getIceServers(); + console.log('[WebRTC] Received ICE config:', data); if (data.iceServers && data.iceServers.length > 0) { cachedIceConfig = { iceServers: data.iceServers }; iceCacheFetchedAt = Date.now();