mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
hostmanager, modulemanager: Ensure hosts[*].modules always exists.
This commit is contained in:
parent
aff71e544e
commit
48a297e80c
2 changed files with 2 additions and 4 deletions
|
@ -75,6 +75,7 @@ function activate(host, host_config)
|
||||||
events = events_new();
|
events = events_new();
|
||||||
dialback_secret = configmanager.get(host, "core", "dialback_secret") or uuid_gen();
|
dialback_secret = configmanager.get(host, "core", "dialback_secret") or uuid_gen();
|
||||||
send = host_send;
|
send = host_send;
|
||||||
|
modules = {};
|
||||||
};
|
};
|
||||||
if not host_config.core.component_module then -- host
|
if not host_config.core.component_module then -- host
|
||||||
host_session.type = "local";
|
host_session.type = "local";
|
||||||
|
|
|
@ -119,10 +119,7 @@ local function do_load_module(host, module_name)
|
||||||
end
|
end
|
||||||
|
|
||||||
if not modulemap[host] then
|
if not modulemap[host] then
|
||||||
modulemap[host] = {};
|
modulemap[host] = hosts[host].modules;
|
||||||
if host ~= "*" then
|
|
||||||
hosts[host].modules = modulemap[host];
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if modulemap[host][module_name] then
|
if modulemap[host][module_name] then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue