mirror of
https://github.com/mastodon/mastodon
synced 2025-04-12 00:56:38 +02:00
Fix error in TwoFactorPamAuthenticatable
when handling invalid params (#33746)
This commit is contained in:
parent
e97335191d
commit
ea743d68f3
@ -22,7 +22,7 @@ module Devise
|
||||
protected
|
||||
|
||||
def valid_params?
|
||||
params[scope] && params[scope][:password].present?
|
||||
params[scope].respond_to?(:[]) && params[scope][:password].present?
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user