2
2
mirror of https://github.com/mastodon/mastodon synced 2025-04-12 00:56:38 +02:00

Fix error in TwoFactorPamAuthenticatable when handling invalid params ()

This commit is contained in:
Claire 2025-01-27 17:30:18 +01:00 committed by GitHub
parent e97335191d
commit ea743d68f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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