# HG changeset patch # User Kim Alvefur # Date 1547924584 -3600 # Node ID 7259a61bacc8dc7d881aae6ad073da194aed278d # Parent 7ce7ee9cd1c5ec7ee35cd82cbabbb3473e76b95d mod_bosh, mod_websocket: Remove accidentally included dependency on non-existant module diff -r 7ce7ee9cd1c5 -r 7259a61bacc8 plugins/mod_bosh.lua --- a/plugins/mod_bosh.lua Fri Jan 18 18:30:41 2019 +0100 +++ b/plugins/mod_bosh.lua Sat Jan 19 20:03:04 2019 +0100 @@ -48,7 +48,6 @@ 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 -r 7ce7ee9cd1c5 -r 7259a61bacc8 plugins/mod_websocket.lua --- a/plugins/mod_websocket.lua Fri Jan 18 18:30:41 2019 +0100 +++ b/plugins/mod_websocket.lua Sat Jan 19 20:03:04 2019 +0100 @@ -32,7 +32,6 @@ 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";