mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl check: Fix traceback when no modules_enabled are defined (e.g., a completely empty config)
This commit is contained in:
parent
abc508f21c
commit
30dcc73298
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue