diff --git a/app/models/web_hook.rb b/app/models/web_hook.rb
index 40b930c3a98c2b3331dbe3e51f21bc09f765104a..b0b1e0bd64ab56b0ff64af976e7f66d3d1a29892 100644
--- a/app/models/web_hook.rb
+++ b/app/models/web_hook.rb
@@ -13,7 +13,7 @@ class WebHook < ActiveRecord::Base
               message: "should be a valid url" }
 
   def execute(data)
-    WebHook.post(url, body: data.to_json)
+    WebHook.post(url, body: data.to_json, headers: { "Content-Type" => "application/json" })
   rescue
     # There was a problem calling this web hook, let's forget about it.
   end