prosodyctl check: Fix traceback when no modules_enabled are defined (e.g., a completely empty config)

This commit is contained in:
Waqas Hussain 2017-09-24 18:23:45 -04:00
parent abc508f21c
commit 30dcc73298

View file

@ -1032,7 +1032,7 @@ function commands.check(arg)
suggested_global_modules = set.intersection(suggested_global_modules or set.new(options.modules_enabled), set.new(options.modules_enabled));
end
end
if not suggested_global_modules:empty() then
if suggested_global_modules and not suggested_global_modules:empty() then
print(" Consider moving these modules into modules_enabled in the global section:")
print(" "..tostring(suggested_global_modules / function (x) return ("%q"):format(x) end));
end