mod_presence: remove unused one-letter loop variable [luacheck]

This commit is contained in:
Anton Shestakov 2016-07-09 00:46:28 +08:00
parent 4da595c2cf
commit 0ce8de81ab

View file

@ -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