logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: b42c018bb8f86e27af43d84bf558d669e18def3b
parent: c9fd6f386c5ae0938f1f9c2d1134508e66231e23
Author: unarist <m.unarist@gmail.com>
Date:   Tue,  8 Aug 2017 22:47:35 +0900

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

application/json only allows Unicode, so this prevents from wrong charset detection.

Diffstat:

Mconfig/initializers/rack_attack.rb1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/config/initializers/rack_attack.rb b/config/initializers/rack_attack.rb @@ -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),