From 29905ce6f2271b0b790301c164b35809550410fc Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Wed, 18 Nov 2020 00:04:49 +0100 Subject: officially return from the exception handler Co-authored-by: oldmud0 --- webAO/master.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webAO/master.js b/webAO/master.js index aec279c..947889b 100644 --- a/webAO/master.js +++ b/webAO/master.js @@ -105,6 +105,7 @@ function checkOnline(serverID, coIP) { oserv = new WebSocket("ws://" + coIP); } catch (SecurityError) { document.getElementById(`server${serverID}`).className = "unavailable"; + return; } } -- cgit