dont remove pwd from url

Signed-off-by: Timo K <toger5@hotmail.de>
This commit is contained in:
Timo K
2023-09-20 16:27:08 +02:00
parent a8ec02b773
commit 4cd2538dd8

View File

@@ -61,7 +61,7 @@ export const useManageRoomSharedKey = (roomId: string): string | null => {
const [hashStart, passwordStart] = hash.split(PASSWORD_STRING);
const hashEnd = passwordStart.split("&").slice(1).join("&");
location.replace((hashStart ?? "") + (hashEnd ?? ""));
// location.replace((hashStart ?? "") + (hashEnd ?? ""));
}, [password, e2eeSharedKey]);
return e2eeSharedKey;