aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2012-04-26 07:04:59 +0100
committerMatthew Wild <mwild1@gmail.com>2012-04-26 07:04:59 +0100
commit9b570dd0e2a96ef5bbb4a9811cd90205cb45edf5 (patch)
tree885c4355a8f4b078d51659d6aa1f164757d2aa69
parent0e5b2786b420aeaea1372c532b464f9e48d40fa1 (diff)
downloadprosody-9b570dd0e2a96ef5bbb4a9811cd90205cb45edf5.tar.gz
prosody-9b570dd0e2a96ef5bbb4a9811cd90205cb45edf5.zip
moduleapi: module:depends(): Don't load shared modules onto the current host if the current host is '*'...
-rw-r--r--core/moduleapi.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua
index 1f8c492d..1c676bc3 100644
--- a/core/moduleapi.lua
+++ b/core/moduleapi.lua
@@ -124,7 +124,8 @@ function api:depends(name)
end);
end
local mod = modulemanager.get_module(self.host, name) or modulemanager.get_module("*", name);
- if mod and mod.module.host == "*" and modulemanager.module_has_method(mod, "add_host") then
+ if mod and mod.module.host == "*" and self.host ~= "*"
+ and modulemanager.module_has_method(mod, "add_host") then
mod = nil; -- This is a shared module, so we still want to load it on our host
end
if not mod then