Add Content-Type header on throttled response to fix mojibake (#4558)

application/json only allows Unicode, so this prevents from wrong charset detection.
This commit is contained in:
unarist 2017-08-08 22:47:35 +09:00 committed by Eugen Rochko
parent c9fd6f386c
commit b42c018bb8
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ class Rack::Attack
match_data = env['rack.attack.match_data']
headers = {
'Content-Type' => 'application/json',
'X-RateLimit-Limit' => match_data[:limit].to_s,
'X-RateLimit-Remaining' => '0',
'X-RateLimit-Reset' => (now + (match_data[:period] - now.to_i % match_data[:period])).iso8601(6),