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:
Kim Alvefur 2025-02-02 13:33:17 +01:00
parent 885164b2b1
commit 084774ae50

View file

@ -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