Fix undefined method error. (#10867)

master
mayaeh 2019-05-28 12:42:04 +09:00 committed by multiple creatures
parent 37736ec0fb
commit 5f6d21b644
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ class Rack::Attack
end
throttle('throttle_unauthenticated_api', limit: 300, period: 5.minutes) do |req|
req.remote_ip if req.api_request? && !req.authenticated?
req.remote_ip if req.api_request? && req.unauthenticated?
end
throttle('throttle_api_media', limit: 300, period: 5.minutes) do |req|