From 2e35ece72d25854e03becb3485a875e5dc92fc94 Mon Sep 17 00:00:00 2001 From: Christoph Stahl Date: Wed, 11 Jun 2025 01:06:10 +0200 Subject: [PATCH] Do not reconnect, if register-web fails --- src/App.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/App.vue b/src/App.vue index ba4f34f..bbfe948 100644 --- a/src/App.vue +++ b/src/App.vue @@ -277,10 +277,7 @@ function joinRoom() { "Please use the correct room code your organizer provided you.
" + "To host your own syng powered karaoke events, please download and " + "install Syng" - if(state.value.joined) { - state.socket.disconnect() - setTimeout(() => connect(), 2000) - } + state.socket.disconnect() } }) }