# HG changeset patch # User Kim Alvefur # Date 1705864080 -3600 # Node ID 992389af2372ba62fb5dab25b280a22c56638120 # Parent 0e96d6a29a12c48ce70714458c2805e06047280a mod_invites: Fix argument handling Not sure what the next() was supposed to do. Reject unknown --options perhaps? diff -r 0e96d6a29a12 -r 992389af2372 plugins/mod_invites.lua --- a/plugins/mod_invites.lua Sat Jan 13 11:00:20 2024 +0100 +++ b/plugins/mod_invites.lua Sun Jan 21 20:08:00 2024 +0100 @@ -277,7 +277,7 @@ 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