mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl check: Fix traceback if the global modules_enabled is unset
This commit is contained in:
parent
3c9b6a4a8d
commit
5cf7f85a08
1 changed files with 2 additions and 2 deletions
|
@ -1080,8 +1080,8 @@ function commands.check(arg)
|
|||
target_hosts:remove("localhost");
|
||||
end
|
||||
|
||||
local modules = set.new(it.to_array(it.values(host_options.modules_enabled)))
|
||||
+ set.new(it.to_array(it.values(config.get("*", "modules_enabled"))))
|
||||
local modules = set.new(it.to_array(it.values(host_options.modules_enabled or {})))
|
||||
+ set.new(it.to_array(it.values(config.get("*", "modules_enabled") or {})))
|
||||
+ set.new({ config.get(host, "component_module") });
|
||||
|
||||
if modules:contains("proxy65") then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue