From bc27e5000a0f2dbc0434f2f71ced9bc998153973 Mon Sep 17 00:00:00 2001 From: Rune Harlyk Date: Thu, 25 Dec 2025 14:02:21 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Update=20connection=20url?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/routes/connection/Connection.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/routes/connection/Connection.svelte b/app/src/routes/connection/Connection.svelte index 1b05565..f1e6664 100644 --- a/app/src/routes/connection/Connection.svelte +++ b/app/src/routes/connection/Connection.svelte @@ -5,7 +5,7 @@ const update = () => { const ws = $apiLocation ? $apiLocation : window.location.host - socket.init(`ws://${ws}/api/ws/events`) + socket.init(`ws://${ws}/api/ws`) }