From 6e8dd0e5911f48a75869a8e355d143639791cd3c Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Wed, 5 Mar 2025 02:23:21 +0200 Subject: [PATCH] web/widget/call: update parameters --- web/src/ui/widget/ElementCall.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/ui/widget/ElementCall.tsx b/web/src/ui/widget/ElementCall.tsx index d9d7dc9..3f66b4e 100644 --- a/web/src/ui/widget/ElementCall.tsx +++ b/web/src/ui/widget/ElementCall.tsx @@ -30,6 +30,7 @@ const elementCallParams = new URLSearchParams({ intent: "join_existing", hideHeader: "true", confineToRoom: "true", + appPrompt: "false", }).toString().replaceAll("%24", "$") const ElementCall = () => { @@ -44,7 +45,6 @@ const ElementCall = () => { waitForIframeLoad: false, data: { perParticipantE2EE: !!room?.meta.current.encryption_event, - // Note: this won't actually work because matrix-js-sdk drops the path prefix for media requests. homeserverBaseURL: client.state.current?.is_logged_in ? client.state.current.homeserver_url : "", }, }), [room, client, baseURL])