This commit is contained in:
Kevin Gibbons 2022-11-27 19:21:13 -08:00
parent afbcb5757e
commit 4ea141c6fe
1 changed files with 5 additions and 5 deletions

View File

@ -21,15 +21,15 @@ function getBrowser() {
// store access details // store access details
document.getElementById("save-login").addEventListener("click", function () { document.getElementById("save-login").addEventListener("click", function () {
let url = document.getElementById("url").value; let url = document.getElementById("full-url").value;
if (!url.includes('://')) { if (!url.includes('://')) {
url = 'http://' + url; url = 'http://' + url;
} }
let parsed = new URL(url); let parsed = new URL(url);
let toStore = { let toStore = {
"access": { "access": {
"url": document.getElementById("full-url").host, "url": parsed.host,
"port": document.getElementById("port").port || '80', "port": parsed.port || '80',
"apiKey": document.getElementById("api-key").value "apiKey": document.getElementById("api-key").value
} }
}; };
@ -91,7 +91,7 @@ function pingBackend() {
console.log("connection validated") console.log("connection validated")
} }
} }
function handleError(error) { function handleError(error) {
console.log(`Error: ${error}`); console.log(`Error: ${error}`);
setStatusIcon(false); setStatusIcon(false);
@ -175,7 +175,7 @@ document.addEventListener("DOMContentLoaded", async () => {
setCookieState(); setCookieState();
} }
function onError(error) { function onError(error) {
console.log(`Error: ${error}`); console.log(`Error: ${error}`);
}; };