From 2699ab0141bd1ffc74848723623f2b052a85c576 Mon Sep 17 00:00:00 2001 From: Timo K Date: Wed, 20 Sep 2023 13:01:19 +0200 Subject: [PATCH] fix url by prvidin a last & everything after the last & will be stripped away -> hence we loose the last param (usually confined to room...) -> going home kills the all the params which we need to fix! 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..4cf3ad85 100644 --- a/src/room/AppSelectionModal.tsx +++ b/src/room/AppSelectionModal.tsx @@ -63,7 +63,7 @@ export const AppSelectionModal: FC = ({ roomId }) => { }); const result = new URL("element://call"); - result.searchParams.set("url", url.toString()); + result.searchParams.set("url", url.toString() + "&"); return result.toString(); }, [roomId, roomSharedKey]);