mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 02:08:23 +00:00
Fix login
This commit is contained in:
parent
99c02722db
commit
a789114f43
@ -505,7 +505,7 @@ post "/login" do |env|
|
||||
|
||||
headers["Cookie"] = URI.unescape(headers["Cookie"])
|
||||
|
||||
if challenge_results[0][5]?.try &.[5] == "INCORRECT_ANSWER_ENTERED"
|
||||
if challenge_results[0][-1]?.try &.[5] == "INCORRECT_ANSWER_ENTERED"
|
||||
error_message = "Incorrect password"
|
||||
next templated "error"
|
||||
end
|
||||
@ -534,7 +534,7 @@ post "/login" do |env|
|
||||
challenge_results = challenge_results[5..-1]
|
||||
challenge_results = JSON.parse(challenge_results)
|
||||
|
||||
if challenge_results[0][5]?.try &.[5] == "INCORRECT_ANSWER_ENTERED"
|
||||
if challenge_results[0][-1]?.try &.[5] == "INCORRECT_ANSWER_ENTERED"
|
||||
error_message = "Invalid TFA code"
|
||||
next templated "error"
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user