From 38a0cc55e2e4bfed2586f4fd04d4090023874c46 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Thu, 6 Apr 2023 20:46:25 +0100 Subject: [PATCH] Add an unrequired semi-colon. Why? --- js/auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/auth.js b/js/auth.js index 2dba456..096722b 100644 --- a/js/auth.js +++ b/js/auth.js @@ -29,7 +29,7 @@ async function registerKey(key) { // Posts key to server and listens for respons body: JSON.stringify(key) }) if (res.JSON['result'] == "ok"){ - localStorage.setItem("uuid", res.JSON['uuid']) + localStorage.setItem("uuid", res.JSON['uuid']); return true; } else { return false;