diff options
author | Kim Alvefur <zash@zash.se> | 2017-12-27 00:42:57 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-12-27 00:42:57 +0100 |
commit | 9526273a1bc133a4f34f9caec30a7f5583619547 (patch) | |
tree | 8b21e907d19f6ac68d599202ac56e066391ba4da /core/moduleapi.lua | |
parent | 1e543ef1918cf5ca0b3aa1569074db05f78f1fc0 (diff) | |
download | prosody-9526273a1bc133a4f34f9caec30a7f5583619547.tar.gz prosody-9526273a1bc133a4f34f9caec30a7f5583619547.zip |
moduleapi: Warn if a module being loaded as a dependency has been disabled
Diffstat (limited to 'core/moduleapi.lua')
-rw-r--r-- | core/moduleapi.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua index e39fd026..2eae35fc 100644 --- a/core/moduleapi.lua +++ b/core/moduleapi.lua @@ -161,6 +161,9 @@ function api:depends(name) end end); end + if self:get_option_inherited_set("modules_disabled", {}):contains(name) then + self:log("warn", "Loading prerequisite mod_%s despite it being disabled", name); + end local mod = modulemanager.get_module(self.host, name) or modulemanager.get_module("*", name); if mod and mod.module.host == "*" and self.host ~= "*" and modulemanager.module_has_method(mod, "add_host") then |