mod_invites: Fix argument handling

Not sure what the next() was supposed to do. Reject unknown --options
perhaps?
This commit is contained in:
Kim Alvefur 2024-01-21 20:08:00 +01:00
parent a2539d4dcd
commit 607f8ffee5

View file

@ -277,7 +277,7 @@ function subcommands.generate(arg)
end
local earlyopts = argparse.parse(arg, { short_params = { h = "help"; ["?"] = "help" } });
if earlyopts.help or next(earlyopts) ~= nil then
if earlyopts.help or not earlyopts[1] then
return help();
end