Merge pull request #2890 from iv-org/SamantazFox-patch-1

DB: fix inverted arguments in User.update_password()
This commit is contained in:
Samantaz Fox 2022-02-10 22:44:40 +01:00 committed by GitHub
commit 955e3de56d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -171,7 +171,7 @@ module Invidious::Database::Users
WHERE email = $2
SQL
PG_DB.exec(request, user.email, pass)
PG_DB.exec(request, pass, user.email)
end
# -------------------