aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_presence.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-07-08 22:01:10 +0200
committerKim Alvefur <zash@zash.se>2016-07-08 22:01:10 +0200
commit7b3f79b2ec8c94a585354d442bc9680cea62c5a3 (patch)
treee5339d0c057334591e52af0777588890d51081a5 /plugins/mod_presence.lua
parent8c0ca748b53ca43d707d86590f666bda5e908a81 (diff)
parent9741bdfb3887695e7021d793ce6a96eaf595ed2b (diff)
downloadprosody-7b3f79b2ec8c94a585354d442bc9680cea62c5a3.tar.gz
prosody-7b3f79b2ec8c94a585354d442bc9680cea62c5a3.zip
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_presence.lua')
-rw-r--r--plugins/mod_presence.lua2
1 files changed, 1 insertions, 1 deletions
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