Fix downcasting with usernames

This commit is contained in:
Omar Roth 2019-04-18 19:17:50 -05:00
parent 2a6c81a89d
commit 7a8d5a391a
1 changed files with 2 additions and 2 deletions

View File

@ -814,7 +814,7 @@ post "/login" do |env|
next templated "error" next templated "error"
end end
email = env.params.body["email"]? email = env.params.body["email"]?.try &.downcase
password = env.params.body["password"]? password = env.params.body["password"]?
account_type = env.params.query["type"]? account_type = env.params.query["type"]?
@ -1024,7 +1024,7 @@ post "/login" do |env|
next templated "error" next templated "error"
end end
user = PG_DB.query_one?("SELECT * FROM users WHERE LOWER(email) = LOWER($1)", email, as: User) user = PG_DB.query_one?("SELECT * FROM users WHERE email = $1", email, as: User)
if user if user
if !user.password if !user.password