aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_bosh.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2013-06-11 12:55:47 -0400
committerWaqas Hussain <waqas20@gmail.com>2013-06-11 12:55:47 -0400
commit87170a4fde14e43ed61bddd045642d96a77f47c4 (patch)
treeba7745fe6c7400b6e66297d30bb335222ac09e12 /plugins/mod_bosh.lua
parent2b974f31e049aad7b8087b133fb65f9718923a61 (diff)
downloadprosody-87170a4fde14e43ed61bddd045642d96a77f47c4.tar.gz
prosody-87170a4fde14e43ed61bddd045642d96a77f47c4.zip
mod_bosh: Reduce a little code.
Diffstat (limited to 'plugins/mod_bosh.lua')
-rw-r--r--plugins/mod_bosh.lua8
1 files changed, 2 insertions, 6 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua
index e3a1050b..9a612ae0 100644
--- a/plugins/mod_bosh.lua
+++ b/plugins/mod_bosh.lua
@@ -37,6 +37,7 @@ local bosh_max_wait = module:get_option_number("bosh_max_wait", 120);
local consider_bosh_secure = module:get_option_boolean("consider_bosh_secure");
local cross_domain = module:get_option("cross_domain_bosh", false);
+if cross_domain == true then cross_domain = "*"; end
if type(cross_domain) == "table" then cross_domain = table.concat(cross_domain, ", "); end
local trusted_proxies = module:get_option_set("trusted_proxies", {"127.0.0.1"})._items;
@@ -90,12 +91,7 @@ local function set_cross_domain_headers(response)
headers.access_control_allow_methods = "GET, POST, OPTIONS";
headers.access_control_allow_headers = "Content-Type";
headers.access_control_max_age = "7200";
-
- if cross_domain == true then
- headers.access_control_allow_origin = "*";
- else
- headers.access_control_allow_origin = cross_domain;
- end
+ headers.access_control_allow_origin = cross_domain;
return response;
end