fix breaking typo

master
multiple creatures 2019-11-26 15:31:55 -06:00
parent f23b06a182
commit e11ea14bc5
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ class Rack::Attack
end
throttle('throttle_unauthenticated_media_proxy', limit: 30, period: 30.minutes) do |req|
req.remote_ip if !req.authenticated? && req.path.start_with?('/media_proxy')
req.remote_ip if req.unauthenticated? && req.path.start_with?('/media_proxy')
end
throttle('throttle_api_sign_up', limit: 5, period: 30.minutes) do |req|