Add an unrequired semi-colon. Why?

This commit is contained in:
Fred Boniface 2023-04-06 20:46:25 +01:00
parent 30a3bbb831
commit 38a0cc55e2
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ async function registerKey(key) { // Posts key to server and listens for respons
body: JSON.stringify(key) body: JSON.stringify(key)
}) })
if (res.JSON['result'] == "ok"){ if (res.JSON['result'] == "ok"){
localStorage.setItem("uuid", res.JSON['uuid']) localStorage.setItem("uuid", res.JSON['uuid']);
return true; return true;
} else { } else {
return false; return false;