mod_invites: Fix storing --group (thanks lissine)

This made it ignore `--group` completely, but if you incorrectly used
`--group foo` it would store `groups=true`.

Introduced in 9ba11ef91ce4
This commit is contained in:
Kim Alvefur 2025-02-17 00:55:27 +01:00
parent 3ba87d07a9
commit f21ea48481

View file

@ -515,7 +515,7 @@ function subcommands.generate(arg)
end end
local roles = opts.role or {}; local roles = opts.role or {};
local groups = opts.groups or {}; local groups = opts.group or {};
if opts.admin then if opts.admin then
-- Insert it first since we don't get order out of argparse -- Insert it first since we don't get order out of argparse