From 1e84e438b71999594756e3becd19c47fe7e912c4 Mon Sep 17 00:00:00 2001 From: Timo <16718859+toger5@users.noreply.github.com> Date: Wed, 20 Sep 2023 19:55:17 +0200 Subject: [PATCH] New url schema (#1554) * new url schema Signed-off-by: Timo K Co-authored-by: Robin --- 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 10081189..a6216ee1 100644 --- a/src/room/AppSelectionModal.tsx +++ b/src/room/AppSelectionModal.tsx @@ -70,7 +70,7 @@ export const AppSelectionModal: FC = ({ roomId }) => { return params; }); - const result = new URL("element://call"); + const result = new URL("io.element.call:/"); result.searchParams.set("url", url.toString()); return result.toString(); }, [roomId, roomSharedKey]);