Fix undefined method error (#10868)

lolsob-rspec
Hinaloe 2019-05-28 21:31:51 +09:00 committed by Eugen Rochko
parent 609677c28d
commit ae5f2716a5
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ class Rack::Attack
end end
throttle('throttle_unauthenticated_paging', limit: 300, period: 15.minutes) do |req| throttle('throttle_unauthenticated_paging', limit: 300, period: 15.minutes) do |req|
req.remote_ip if req.paging_request? && !req.authenticated? req.remote_ip if req.paging_request? && req.unauthenticated?
end end
API_DELETE_REBLOG_REGEX = /\A\/api\/v1\/statuses\/[\d]+\/unreblog/.freeze API_DELETE_REBLOG_REGEX = /\A\/api\/v1\/statuses\/[\d]+\/unreblog/.freeze