mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_invites: Fix argument handling
Not sure what the next() was supposed to do. Reject unknown --options perhaps?
This commit is contained in:
parent
a2539d4dcd
commit
607f8ffee5
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue