mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +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();
|
||||
dialback_secret = configmanager.get(host, "core", "dialback_secret") or uuid_gen();
|
||||
send = host_send;
|
||||
modules = {};
|
||||
};
|
||||
if not host_config.core.component_module then -- host
|
||||
host_session.type = "local";
|
||||
|
|
|
@ -119,10 +119,7 @@ local function do_load_module(host, module_name)
|
|||
end
|
||||
|
||||
if not modulemap[host] then
|
||||
modulemap[host] = {};
|
||||
if host ~= "*" then
|
||||
hosts[host].modules = modulemap[host];
|
||||
end
|
||||
modulemap[host] = hosts[host].modules;
|
||||
end
|
||||
|
||||
if modulemap[host][module_name] then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue