prosodyctl: Fix traceback when no command provided (thanks Zash)

This commit is contained in:
Matthew Wild 2020-06-04 17:26:18 +01:00
parent 1b30a8e979
commit 366a099409

View file

@ -587,7 +587,7 @@ local command_runner = async.runner(function ()
end
end
if not commands[command] then
if command and not commands[command] then
local ok, command_module = pcall(require, "util.prosodyctl."..command);
if ok and command_module[command] then
commands[command] = command_module[command];