From 218562d6227af52bb77eb7f15dfe93393797f381 Mon Sep 17 00:00:00 2001 From: Timo K Date: Wed, 20 Sep 2023 15:36:02 +0200 Subject: [PATCH] new url schema Signed-off-by: Timo K --- src/room/AppSelectionModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/room/AppSelectionModal.tsx b/src/room/AppSelectionModal.tsx index 80e2871b..c3b8559b 100644 --- a/src/room/AppSelectionModal.tsx +++ b/src/room/AppSelectionModal.tsx @@ -62,7 +62,7 @@ export const AppSelectionModal: FC = ({ roomId }) => { return params; }); - const result = new URL("element://call"); + const result = new URL("io.element.call:/call"); result.searchParams.set("url", url.toString()); return result.toString(); }, [roomId, roomSharedKey]);