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 | 2612e75c8a206c174071c66a6fe938b07349e55a (patch) | |
tree | addf2532fcc35b0373d4c77ad2c1cbb5ae6e3347 | |
parent | d254f7e101f76154ad5fb1a22964b74cba93d675 (diff) | |
download | prosody-2612e75c8a206c174071c66a6fe938b07349e55a.tar.gz prosody-2612e75c8a206c174071c66a6fe938b07349e55a.zip |
mod_bosh, mod_websocket: Remove accidentally included dependency on non-existant module
-rw-r--r-- | plugins/mod_bosh.lua | 1 | ||||
-rw-r--r-- | plugins/mod_websocket.lua | 1 |
2 files changed, 0 insertions, 2 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; diff --git a/plugins/mod_websocket.lua b/plugins/mod_websocket.lua index da0ce8a6..008f6823 100644 --- a/plugins/mod_websocket.lua +++ b/plugins/mod_websocket.lua @@ -32,7 +32,6 @@ local consider_websocket_secure = module:get_option_boolean("consider_websocket_ local cross_domain = module:get_option("cross_domain_websocket"); if cross_domain ~= nil then module:log("info", "The 'cross_domain_websocket' option has been deprecated"); - module:depends("http_crossdomain"); end local xmlns_framing = "urn:ietf:params:xml:ns:xmpp-framing"; local xmlns_streams = "http://etherx.jabber.org/streams"; |