mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +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
|
@ -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