# HG changeset patch # User Matthew Wild # Date 1701280233 0 # Node ID a6c8a50cdfb5df6b16597dd63059fcfa449fa8ac # Parent 83f3076965f6046776acbe475fd35f0b87c76dd9 mod_invites: Fix linter issues diff -r 83f3076965f6 -r a6c8a50cdfb5 plugins/mod_invites.lua --- a/plugins/mod_invites.lua Wed Nov 29 17:49:20 2023 +0000 +++ b/plugins/mod_invites.lua Wed Nov 29 17:50:33 2023 +0000 @@ -210,8 +210,8 @@ args = { { name = "user_jid", type = "string" } }; host_selector = "user_jid"; - handler = function (self, user_jid) - local username, host = jid_split(user_jid); + handler = function (self, user_jid) --luacheck: ignore 212/self + local username = jid_split(user_jid); local invite, err = create_account(username); if not invite then return nil, err; end return true, invite.landing_page or invite.uri; @@ -226,8 +226,8 @@ args = { { name = "user_jid", type = "string" }, { name = "allow_registration" } }; host_selector = "user_jid"; - handler = function (self, user_jid, allow_registration) - local username, host = jid_split(user_jid); + handler = function (self, user_jid, allow_registration) --luacheck: ignore 212/self + local username = jid_split(user_jid); local invite, err = create_contact(username, allow_registration); if not invite then return nil, err; end return true, invite.landing_page or invite.uri;