Fixed bug where user password was never saved

This commit is contained in:
Emi Tatsuo 2020-11-22 00:42:26 -05:00
parent 3c7d3457ef
commit 2b5ee33762
Signed by: Emi
GPG Key ID: 68FAB2E2E6DFC98B
2 changed files with 1 additions and 3 deletions

View File

@ -1,3 +0,0 @@
Welcome {username}!
=> {redirect} Back to app

View File

@ -297,6 +297,7 @@ impl<UserData: Serialize + DeserializeOwned> RegisteredUser<UserData> {
)?,
salt,
));
self.has_changed = true;
Ok(())
}