From 3e2b70c5ed03d6e8c2af8e263d869721103fabeb Mon Sep 17 00:00:00 2001 From: Roland Osborne Date: Thu, 30 May 2024 14:48:23 -0700 Subject: [PATCH] ice config on accept --- net/web/src/context/useAppContext.hook.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/web/src/context/useAppContext.hook.js b/net/web/src/context/useAppContext.hook.js index f131e14d..ac485dc4 100644 --- a/net/web/src/context/useAppContext.hook.js +++ b/net/web/src/context/useAppContext.hook.js @@ -187,7 +187,7 @@ export function useAppContext(websocket) { else if (activity.ring) { const { cardId, callId, calleeToken, ice, iceUrl, iceUsername, icePassword } = activity.ring; const config = ice ? ice : [{ urls: iceUrl, username: iceUsername, credential: icePassword }]; - ringContext.actions.ring(cardId, callId, calleeToken, ice); + ringContext.actions.ring(cardId, callId, calleeToken, config); } else { setAppRevision(activity);