summaryrefslogtreecommitdiff
path: root/client-web/source/index.ts
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2022-09-09 12:45:37 +0200
committermetamuffin <metamuffin@disroot.org>2022-09-09 12:45:37 +0200
commite590ea788aefe0714bb9ce24976303566a648d42 (patch)
treed6b3d827512af388fe0ea4f2ac1c2f1fc983178a /client-web/source/index.ts
parentb25bbae82f9bfaf6f37dfb16e07708060dd3df55 (diff)
downloadkeks-meet-e590ea788aefe0714bb9ce24976303566a648d42.tar
keks-meet-e590ea788aefe0714bb9ce24976303566a648d42.tar.bz2
keks-meet-e590ea788aefe0714bb9ce24976303566a648d42.tar.zst
reworked websocket stuff with encryption and new spec
Diffstat (limited to 'client-web/source/index.ts')
-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 21bf4b8..5695573 100644
--- a/client-web/source/index.ts
+++ b/client-web/source/index.ts
@@ -19,7 +19,7 @@ export interface User {
window.onload = () => main()
export async function main() {
- document.body.querySelector("p")?.remove()
+ document.body.querySelectorAll("p").forEach(e => e.remove())
log("*", "starting up")
const room_name = window.location.pathname.substring("/".length)
const conn = await (new SignalingConnection().connect(room_name))