mirror of
https://github.com/iv-org/invidious
synced 2024-11-09 01:10:27 +00:00
Add more informative error response on incorrect CAPTCHA
This commit is contained in:
parent
d185ba84bf
commit
cd482cfd89
@ -831,7 +831,12 @@ post "/login" do |env|
|
||||
begin
|
||||
validate_response(challenge, token, answer, "sign_in", HMAC_KEY, PG_DB)
|
||||
rescue ex
|
||||
error_message = ex.message
|
||||
if ex.message && ex.message == "Invalid user"
|
||||
error_message = "Invalid CAPTCHA response"
|
||||
else
|
||||
error_message = ex.message
|
||||
end
|
||||
|
||||
next templated "error"
|
||||
end
|
||||
|
||||
|
@ -251,7 +251,7 @@ def validate_response(challenge, token, user_id, operation, key, db)
|
||||
end
|
||||
|
||||
if challenge_user_id != user_id
|
||||
raise "Invalid token"
|
||||
raise "Invalid user"
|
||||
end
|
||||
|
||||
if expire < Time.now.to_unix
|
||||
|
Loading…
Reference in New Issue
Block a user