From: Anton Shestakov Date: Fri, 8 Jul 2016 16:46:28 +0000 (+0800) Subject: mod_presence: remove unused one-letter loop variable [luacheck] X-Git-Url: https://git.enpas.org/?p=prosody.git;a=commitdiff_plain;h=1cfa756efdb8fba4b206ac9924df64b47647b65c mod_presence: remove unused one-letter loop variable [luacheck] --- diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua index cf762edc..e4a317bc 100644 --- a/plugins/mod_presence.lua +++ b/plugins/mod_presence.lua @@ -130,7 +130,7 @@ function send_presence_of_available_resources(user, host, jid, recipient_session if h and h.type == "local" then local u = h.sessions[user]; if u then - for k, session in pairs(u.sessions) do + for _, session in pairs(u.sessions) do local pres = session.presence; if pres then if stanza then pres = stanza; pres.attr.from = session.full_jid; end