Merge pull request #42 from omarroth/change-default-account

Change default account type to Invidious accounts
This commit is contained in:
Omar Roth 2018-07-26 18:00:36 -05:00 committed by GitHub
commit f98d30d36f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 22 deletions

View file

@ -1031,7 +1031,7 @@ get "/login" do |env|
referer ||= "/feed/subscriptions"
account_type = env.params.query["type"]?
account_type ||= "google"
account_type ||= "invidious"
if account_type == "invidious"
captcha = generate_captcha(HMAC_KEY)
@ -1148,7 +1148,7 @@ post "/login" do |env|
end
if !tfa_code
next env.redirect "/login?tfa=true"
next env.redirect "/login?tfa=true&type=google"
end
tl = challenge_results[1][2]