This commit is contained in:
parent
95469da4f8
commit
37f65b6353
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ impl User {
|
||||||
sqlx::query("UPDATE users SET \"password\" = $1 WHERE username = $2;")
|
sqlx::query("UPDATE users SET \"password\" = $1 WHERE username = $2;")
|
||||||
.bind(bcrypt::hash(new, bcrypt::DEFAULT_COST).unwrap())
|
.bind(bcrypt::hash(new, bcrypt::DEFAULT_COST).unwrap())
|
||||||
.bind(&self.username)
|
.bind(&self.username)
|
||||||
.fetch_one(get_pg!())
|
.execute(get_pg!())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue