From 3048dc5f194d06b121c176474e7f3245500c9b9c Mon Sep 17 00:00:00 2001 From: Kyle Drake Date: Wed, 17 Jul 2013 15:18:18 -0400 Subject: [PATCH] arbitrary utf setting to see if it helps the weird problem --- app.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app.rb b/app.rb index 69a258a9..5f0af667 100644 --- a/app.rb +++ b/app.rb @@ -9,6 +9,7 @@ use Rack::Recaptcha, public_key: $config['recaptcha_public_key'], private_key: $ helpers Rack::Recaptcha::Helpers before do + content_type :html, 'charset' => 'utf-8' redirect '/' if request.post? && !csrf_safe? end