mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2023-06-08.git
synced 2024-08-15 00:53:38 +00:00
Fixed format
This commit is contained in:
parent
a773b6cc9c
commit
3d40a57dce
1 changed files with 3 additions and 3 deletions
|
@ -56,9 +56,9 @@ module Invidious::Routes::Login
|
|||
user = Invidious::Database::Users.select(email: email)
|
||||
|
||||
if user
|
||||
user_flow_existing(env,email)
|
||||
user_flow_existing(env, email)
|
||||
else
|
||||
user_flow_new(env,email,nil);
|
||||
user_flow_new(env, email, nil)
|
||||
end
|
||||
rescue
|
||||
return error_template(403, "Invalid Authorization Code")
|
||||
|
@ -461,7 +461,7 @@ module Invidious::Routes::Login
|
|||
end
|
||||
end
|
||||
end
|
||||
user_flow_new(env, email, password);
|
||||
user_flow_new(env, email, password)
|
||||
end
|
||||
|
||||
env.redirect referer
|
||||
|
|
Loading…
Reference in a new issue