diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-04-29 19:36:11 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-04-29 19:36:11 +0100 |
commit | a76d2c46fbd6504748286fd5600755f4d18fe1d3 (patch) | |
tree | e51c6685382af3ef78605188b1f9d279748ac844 /core/modulemanager.lua | |
parent | 4773db2341d82440e88279935ed5cff8cdcfb196 (diff) | |
download | prosody-a76d2c46fbd6504748286fd5600755f4d18fe1d3.tar.gz prosody-a76d2c46fbd6504748286fd5600755f4d18fe1d3.zip |
modulemanager: Hide deprecation warning for modules loaded on '*' directly (e.g. prosodyctl mod_<command>) (thanks Zash)
Diffstat (limited to 'core/modulemanager.lua')
-rw-r--r-- | core/modulemanager.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua index 90116166..461bff5c 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -180,7 +180,9 @@ local function do_load_module(host, module_name) if api_instance.host == "*" then if not api_instance.global then -- COMPAT w/pre-0.9 - log("warn", "mod_%s: Setting module.host = '*' deprecated, call module:set_global() instead", module_name); + if host ~= "*" then + log("warn", "mod_%s: Setting module.host = '*' deprecated, call module:set_global() instead", module_name); + end api_instance:set_global(); end modulemap[host][module_name] = nil; |