diff options
Diffstat (limited to 'client-web')
-rw-r--r-- | client-web/source/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client-web/source/index.ts b/client-web/source/index.ts index 7bc9197..a9babb4 100644 --- a/client-web/source/index.ts +++ b/client-web/source/index.ts @@ -69,6 +69,8 @@ export async function main() { if (room_secret.length == 0) return window.location.href = "/" // send them back to the start page if (PREFS.warn_redirect) log({ scope: "crypto", warn: true }, "You were redirected from the old URL format. The server knows the room secret now - e2ee is insecure!") + if (room_secret.split("#").length > 1) document.title = `${room_secret.split("#")[0]} | keks-meet` + const conn = await (new SignalingConnection().connect()) const rtc_config: RTCConfiguration = { iceCandidatePoolSize: 10, |