Fix compatibility with Redis <6.2 (#29123)

This commit is contained in:
Claire 2024-02-07 12:52:38 +01:00 committed by GitHub
parent da50217b88
commit eeabf9af72
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -183,7 +183,9 @@ class Auth::SessionsController < Devise::SessionsController
)
# Only send a notification email every hour at most
return if redis.set("2fa_failure_notification:#{user.id}", '1', ex: 1.hour, get: true).present?
return if redis.get("2fa_failure_notification:#{user.id}").present?
redis.set("2fa_failure_notification:#{user.id}", '1', ex: 1.hour)
UserMailer.failed_2fa(user, request.remote_ip, request.user_agent, Time.now.utc).deliver_later!
end