aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-12-11 03:28:24 +0100
committermetamuffin <metamuffin@disroot.org>2025-12-11 03:28:24 +0100
commit36391b074f2fb20de77dbc23573ca5b8fbf7f0d5 (patch)
tree7509cead6303c35af39890edea579be193f38aad /web
parent214b78c581319ee012383134107fa5c371febe09 (diff)
downloadjellything-36391b074f2fb20de77dbc23573ca5b8fbf7f0d5.tar
jellything-36391b074f2fb20de77dbc23573ca5b8fbf7f0d5.tar.bz2
jellything-36391b074f2fb20de77dbc23573ca5b8fbf7f0d5.tar.zst
text changes and small fixes
Diffstat (limited to 'web')
-rw-r--r--web/script/import_live.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/script/import_live.ts b/web/script/import_live.ts
index cc8c846..3507cf7 100644
--- a/web/script/import_live.ts
+++ b/web/script/import_live.ts
@@ -44,9 +44,9 @@ globalThis.addEventListener("DOMContentLoaded", () => {
const el = document.getElementById("admin_import")!
const ws = new WebSocket(`/admin/import`)
- ws.onopen = () => console.log("live log connected");
- ws.onclose = () => console.log("live log disconnected");
- ws.onerror = e => console.log("live log ws error", e);
+ ws.onopen = () => console.log("live progress connected");
+ ws.onclose = () => console.log("live progress disconnected");
+ ws.onerror = e => console.log("live progress ws error", e);
const progress = new OVar(0)