# HG changeset patch # User Waqas Hussain # Date 1287718614 -18000 # Node ID 2acaf129e1c30ac0a786ac135b024ea9df08c73c # Parent a72b88953bf270cc2555ebffd680d3741fd91a42 mod_bosh: Don't add a Content-Type header to the HTTP OPTIONS reply. diff -r a72b88953bf2 -r 2acaf129e1c3 plugins/mod_bosh.lua --- a/plugins/mod_bosh.lua Wed Oct 20 03:57:47 2010 +0500 +++ b/plugins/mod_bosh.lua Fri Oct 22 08:36:54 2010 +0500 @@ -102,7 +102,10 @@ function handle_request(method, body, request) if (not body) or request.method ~= "POST" then if request.method == "OPTIONS" then - return { headers = default_headers, body = "" }; + local headers = {}; + for k,v in pairs(default_headers) do headers[k] = v; end + headers["Content-Type"] = nil; + return { headers = headers, body = "" }; else return "You really don't look like a BOSH client to me... what do you want?"; end