Fix variable typo in login.js

This commit is contained in:
Tracker-Friendly 2024-07-28 14:21:12 +01:00
parent 0f880980bc
commit 45e2db0e2d
1 changed files with 1 additions and 1 deletions

View File

@ -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))