diff --git a/src/e2ee/sharedKeyManagement.ts b/src/e2ee/sharedKeyManagement.ts index e22d3269..e8a8c83d 100644 --- a/src/e2ee/sharedKeyManagement.ts +++ b/src/e2ee/sharedKeyManagement.ts @@ -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;