mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Add fix for unsupported authentication protocols
This commit is contained in:
parent
333dcd2089
commit
55167724b1
1 changed files with 2 additions and 1 deletions
|
@ -1123,7 +1123,8 @@ post "/login" do |env|
|
||||||
end
|
end
|
||||||
|
|
||||||
if challenge_results[0][-1][0].as_a?
|
if challenge_results[0][-1][0].as_a?
|
||||||
tfa = challenge_results[0][-1][0][0]
|
# Prefer Authenticator app and SMS over unsupported protocols
|
||||||
|
tfa = challenge_results[0][-1][0].as_a.select { |auth_type| auth_type[8] == 6 || auth_type[8] == 9 }[0]
|
||||||
|
|
||||||
if tfa[2] == "TWO_STEP_VERIFICATION"
|
if tfa[2] == "TWO_STEP_VERIFICATION"
|
||||||
if tfa[5] == "QUOTA_EXCEEDED"
|
if tfa[5] == "QUOTA_EXCEEDED"
|
||||||
|
|
Loading…
Reference in a new issue