summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2022-08-05 23:25:22 -0400
committerKyle Gunger <kgunger12@gmail.com>2022-08-05 23:25:22 -0400
commite50ca22b65feb0a71d2a610880e8f20e985c2fee (patch)
tree986069a51e817169d9db178d12e7d3e80e375ed4
parent32a50674868c48c34d35694009f3f1a59e3cf823 (diff)
Remove "&g=-1" from the connections
-rw-r--r--index.html4
1 files 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();