diff options
author | Kim Alvefur <zash@zash.se> | 2019-01-19 20:03:04 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-01-19 20:03:04 +0100 |
commit | 814eebb672ee88a87a7c3effe5c437efd34f5f3e (patch) | |
tree | addf2532fcc35b0373d4c77ad2c1cbb5ae6e3347 /plugins/mod_bosh.lua | |
parent | 22195430f16dcf56cb4728c00254d89964617255 (diff) | |
download | prosody-814eebb672ee88a87a7c3effe5c437efd34f5f3e.tar.gz prosody-814eebb672ee88a87a7c3effe5c437efd34f5f3e.zip |
mod_bosh, mod_websocket: Remove accidentally included dependency on non-existant module
Diffstat (limited to 'plugins/mod_bosh.lua')
-rw-r--r-- | plugins/mod_bosh.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index 82615161..082ed961 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -48,7 +48,6 @@ local cross_domain = module:get_option("cross_domain_bosh"); if cross_domain ~= nil then module:log("info", "The 'cross_domain_bosh' option has been deprecated"); - module:depends("http_crossdomain"); end local t_insert, t_remove, t_concat = table.insert, table.remove, table.concat; |