Browse Source

Avoid return within block (#17590)

This prevents the error: LocalJumpError (unexpected return)
closed-social-glitch-2
zunda 2 years ago
committed by GitHub
parent
commit
f9e7f2e409
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 3 deletions
  1. +7
    -3
      config/initializers/rack_attack.rb

+ 7
- 3
config/initializers/rack_attack.rb View File

@ -82,9 +82,13 @@ class Rack::Attack
end
throttle('throttle_sign_up_attempts/ip', limit: 25, period: 5.minutes) do |req|
return unless req.post? && req.path == '/auth'
return req.remote_ip.mask(64) if req.remote_ip.ipv6?
req.remote_ip
if req.post? && req.path == '/auth'
if req.remote_ip.ipv6?
req.remote_ip.mask(64)
else
req.remote_ip
end
end
end
throttle('throttle_password_resets/ip', limit: 25, period: 5.minutes) do |req|

Loading…
Cancel
Save