From 34b4ec02fee1ab3d732a8ddc8e0155685a6340bb Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Wed, 29 Nov 2023 17:50:33 +0000 Subject: mod_invites: Fix linter issues --- plugins/mod_invites.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins') diff --git a/plugins/mod_invites.lua b/plugins/mod_invites.lua index d31e8bfc..04265070 100644 --- a/plugins/mod_invites.lua +++ b/plugins/mod_invites.lua @@ -210,8 +210,8 @@ module:add_item("shell-command", { 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 @@ module:add_item("shell-command", { 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; -- cgit v1.2.3