From e50ca22b65feb0a71d2a610880e8f20e985c2fee Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Fri, 5 Aug 2022 23:25:22 -0400 Subject: Remove "&g=-1" from the connections --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 690ea47..eb03d70 100644 --- a/index.html +++ b/index.html @@ -102,7 +102,7 @@ let a = document.createElement("a"); a.innerText = urls[i]; - a.href = "client.html?s=" + urls[i] + "&g=-1"; + a.href = "client.html?s=" + urls[i]; let b = document.createElement("button"); b.innerText = "X"; @@ -190,7 +190,7 @@ let concat = serverParts[0] + serverParts[1] + ":" + serverParts[2]; addAddr(concat); //c.setAttribute("href", url); - window.location = "client.html?s=" + concat + "&g=-1"; + window.location = "client.html?s=" + concat; } let themeURL = Theme.get(); -- cgit v1.2.3