# HG changeset patch # User Waqas Hussain # Date 1370969747 14400 # Node ID 0bf1cdea43f69cf73068f939eef9f33f6914664c # Parent c1e1b265ee826e93f211bf4dcd9b5a2b1e0f3ab1 mod_bosh: Reduce a little code. diff -r c1e1b265ee82 -r 0bf1cdea43f6 plugins/mod_bosh.lua --- a/plugins/mod_bosh.lua Mon Jun 10 14:37:02 2013 +0200 +++ b/plugins/mod_bosh.lua Tue Jun 11 12:55:47 2013 -0400 @@ -37,6 +37,7 @@ 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 @@ 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