aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-10-25 17:11:10 +0200
committerKim Alvefur <zash@zash.se>2018-10-25 17:11:10 +0200
commitfb6abdb161b2191b183102274a299e526049172b (patch)
tree4aa853e48697a1169b6190e0b582bf9b1da80c01 /core
parentf179d7fe1c8430dcb795fb624bed461a3d335f6a (diff)
downloadprosody-fb6abdb161b2191b183102274a299e526049172b.tar.gz
prosody-fb6abdb161b2191b183102274a299e526049172b.zip
moduleapi: Prevent loading disabled module as dependency of enabled one
Explicitly disabled module should stay disabled.
Diffstat (limited to 'core')
-rw-r--r--core/moduleapi.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua
index c19594c1..10f9f04d 100644
--- a/core/moduleapi.lua
+++ b/core/moduleapi.lua
@@ -129,6 +129,9 @@ end
function api:depends(name)
local modulemanager = require"core.modulemanager";
+ if self:get_option_inherited_set("modules_disabled", {}):contains(name) then
+ error("Dependency on disabled module mod_"..name);
+ end
if not self.dependencies then
self.dependencies = {};
self:hook("module-reloaded", function (event)
@@ -145,9 +148,6 @@ 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