From 4a637d469c620af9a96c0ad0c674dd9708cf8600 Mon Sep 17 00:00:00 2001 From: Ross Date: Thu, 16 Dec 2021 17:43:33 +0000 Subject: [PATCH] . --- templates/cid_selector.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/cid_selector.html b/templates/cid_selector.html index dd411ddb..52d16f7b 100644 --- a/templates/cid_selector.html +++ b/templates/cid_selector.html @@ -33,7 +33,7 @@ $("#cid-selector-go-button").click(() => { cid = document.getElementById("cid-box").value; passcode = document.getElementById("passcode-box").value; - window.location = window.location + cid + "/" + passcode; + window.location = window.location.href.split('?')[0] + cid + "/" + passcode; }) })