fix it better

This commit is contained in:
Kevin Gibbons 2022-11-27 20:01:06 -08:00
parent 4ea141c6fe
commit 25dd6dbdc5
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@ document.getElementById("save-login").addEventListener("click", function () {
let parsed = new URL(url);
let toStore = {
"access": {
"url": parsed.host,
"port": parsed.port || '80',
"url": `${parsed.protocol}//${parsed.hostname}`,
"port": parsed.port || (parsed.protocol === 'https' ? '443' : '80'),
"apiKey": document.getElementById("api-key").value
}
};