prosodyctl check: Fix traceback if the global modules_enabled is unset

This commit is contained in:
Kim Alvefur 2016-01-12 01:13:57 +01:00
parent 3c9b6a4a8d
commit 5cf7f85a08

View file

@ -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