From 6f4b23265a850d5f3df271f342b6807fd37bb187 Mon Sep 17 00:00:00 2001 From: AmateurAudioDude <168192910+AmateurAudioDude@users.noreply.github.com> Date: Tue, 13 Aug 2024 02:54:32 +1000 Subject: [PATCH] UI autoreconnect and resume on lost connection --- web/js/main.js | 1 - 1 file changed, 1 deletion(-) diff --git a/web/js/main.js b/web/js/main.js index bcac2ce..1d5f649 100644 --- a/web/js/main.js +++ b/web/js/main.js @@ -222,7 +222,6 @@ function sendPingRequest() { // Automatic reconnection on WebSocket close if (socket.readyState === WebSocket.CLOSED || socket.readyState === WebSocket.CLOSING) { - console.log("Main/UI attempting to reconnect...", socketAddress); socket = new WebSocket(socketAddress); socket.onopen = () => {