aboutsummaryrefslogtreecommitdiff
path: root/client-web/source
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2022-09-09 20:33:42 +0200
committermetamuffin <metamuffin@disroot.org>2022-09-09 20:33:42 +0200
commit705fef72485ad11f20a38223e3de4ffa05a0bbd4 (patch)
tree4be4c5cabc674d82ec71cc367337c9f2908218d6 /client-web/source
parent8147d03b44323172454601523a18060edbb0ab9f (diff)
downloadkeks-meet-705fef72485ad11f20a38223e3de4ffa05a0bbd4.tar
keks-meet-705fef72485ad11f20a38223e3de4ffa05a0bbd4.tar.bz2
keks-meet-705fef72485ad11f20a38223e3de4ffa05a0bbd4.tar.zst
typo
Diffstat (limited to 'client-web/source')
-rw-r--r--client-web/source/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client-web/source/index.ts b/client-web/source/index.ts
index 7dfdb59..2b7c2a4 100644
--- a/client-web/source/index.ts
+++ b/client-web/source/index.ts
@@ -37,7 +37,7 @@ export async function main() {
if (!globalThis.crypto.subtle) return log({ scope: "crypto", error: true }, "SubtleCrypto not availible")
if (room_name.length < 8) log({ scope: "crypto", warn: true }, "Room name is very short. e2ee is insecure!")
if (room_name.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 you room name now - e2ee is insecure!")
+ if (PREFS.warn_redirect) log({ scope: "crypto", warn: true }, "You were redirected from the old URL format. The server knows the room name now - e2ee is insecure!")
const conn = await (new SignalingConnection().connect(room_name))
const r = new Room(conn)