From f21ea48481bb050f07348ea7d4312dc72324da2b Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Mon, 17 Feb 2025 00:55:27 +0100 Subject: [PATCH] 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 --- plugins/mod_invites.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/mod_invites.lua b/plugins/mod_invites.lua index c93afaa8b..1e9eb38e3 100644 --- a/plugins/mod_invites.lua +++ b/plugins/mod_invites.lua @@ -515,7 +515,7 @@ function subcommands.generate(arg) end local roles = opts.role or {}; - local groups = opts.groups or {}; + local groups = opts.group or {}; if opts.admin then -- Insert it first since we don't get order out of argparse