From 45e2db0e2d581abee97494820eb384fe3eb67b12 Mon Sep 17 00:00:00 2001 From: Arzumify Date: Sun, 28 Jul 2024 14:21:12 +0100 Subject: [PATCH] Fix variable typo in login.js --- static/js/login.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/login.js b/static/js/login.js index 2998212..dbe5d91 100644 --- a/static/js/login.js +++ b/static/js/login.js @@ -194,7 +194,7 @@ nextButton.addEventListener("click", async () => { })) statusBox.innerText = "Migrating password..." - let status = await migrateLegacyPassword(loginDataOld["key"], hashedPass) + let status = await migrateLegacyPassword(loginDataOld["key"], hashedPassword) if (status.status === 200) { statusBox.innerText = "Welcome back!" await new Promise(r => setTimeout(r, 200))