mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
prosodyctl: Fix traceback when no command provided (thanks Zash)
This commit is contained in:
parent
1b30a8e979
commit
366a099409
1 changed files with 1 additions and 1 deletions
|
@ -587,7 +587,7 @@ local command_runner = async.runner(function ()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if not commands[command] then
|
if command and not commands[command] then
|
||||||
local ok, command_module = pcall(require, "util.prosodyctl."..command);
|
local ok, command_module = pcall(require, "util.prosodyctl."..command);
|
||||||
if ok and command_module[command] then
|
if ok and command_module[command] then
|
||||||
commands[command] = command_module[command];
|
commands[command] = command_module[command];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue