This commit is contained in:
Ross
2021-12-16 17:43:33 +00:00
parent b78452472b
commit 4a637d469c
+1 -1
View File
@@ -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;
})
})
</script>