User: Remove broken Google login (password change route)

pull/3893/head
Samantaz Fox 11 months ago
parent 836898754e
commit fcbd5106c3
No known key found for this signature in database
GPG Key ID: F42821059186176E

@ -42,11 +42,6 @@ module Invidious::Routes::Account
sid = sid.as(String)
token = env.params.body["csrf_token"]?
# We don't store passwords for Google accounts
if !user.password
return error_template(400, "Cannot change password for Google accounts")
end
begin
validate_request(token, sid, env.request, HMAC_KEY, locale)
rescue ex
@ -54,7 +49,7 @@ module Invidious::Routes::Account
end
password = env.params.body["password"]?
if !password
if password.nil? || password.empty?
return error_template(401, "Password is a required field")
end

Loading…
Cancel
Save