mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-03 19:47:14 +08:00
fix change password sql query
This commit is contained in:
parent
656a935a6c
commit
d117a035d2
@ -51,7 +51,7 @@ func AddAccountSession(username string, token []byte) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func UpdateAccountPassword(uuid, key, salt []byte) error {
|
func UpdateAccountPassword(uuid, key, salt []byte) error {
|
||||||
_, err := handle.Exec("UPDATE accounts SET (hash, salt) VALUES (?, ?) WHERE uuid = ?", key, salt, uuid)
|
_, err := handle.Exec("UPDATE accounts SET hash = ?, salt = ? WHERE uuid = ?", key, salt, uuid)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user