mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_admin_shell: Fix help forgetting arguments
The array:pluck() method mutates the args, replacing the table items with the resulting strings. On later runs I assume it tries to index the string, which returns nil, emptying the array.
This commit is contained in:
parent
885164b2b1
commit
084774ae50
1 changed files with 1 additions and 1 deletions
|
@ -456,7 +456,7 @@ def_env.help = setmetatable({}, {
|
|||
|
||||
for command, command_help in it.sorted_pairs(section_help.commands or {}) do
|
||||
c = c + 1;
|
||||
local args = command_help.args:pluck("name"):concat(", ");
|
||||
local args = array.pluck(command_help.args, "name"):concat(", ");
|
||||
local desc = command_help.desc or command_help.module and ("Provided by mod_"..command_help.module) or "";
|
||||
print(("%s:%s(%s) - %s"):format(section_name, command, args, desc));
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue