Fix variable typo in login.js
This commit is contained in:
parent
0f880980bc
commit
45e2db0e2d
|
@ -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))
|
||||
|
|
Reference in New Issue