Skip to content

Commit

Permalink
reset password script fix
Browse files Browse the repository at this point in the history
  • Loading branch information
julichan committed Dec 10, 2023
1 parent 4dcebdb commit 9d2c616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/reset-password.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function resetPassword(username, password) {
return;
}

updatePassword(user.id, password);
updatePassword(user, password);
console.log("Password changed!");
}

Expand Down

0 comments on commit 9d2c616

Please sign in to comment.