diff options
author | Kim Alvefur <zash@zash.se> | 2016-07-08 22:01:10 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-07-08 22:01:10 +0200 |
commit | c14840340a365a79517ff455b3e84d25ef62c159 (patch) | |
tree | e5339d0c057334591e52af0777588890d51081a5 /plugins/mod_presence.lua | |
parent | 01e9c0fcaece58c4b70ffcb2e6f3df8e15f03f7b (diff) | |
parent | c53e625e427b1197b45ac9bbdf192cb07c6f2285 (diff) | |
download | prosody-c14840340a365a79517ff455b3e84d25ef62c159.tar.gz prosody-c14840340a365a79517ff455b3e84d25ef62c159.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_presence.lua')
-rw-r--r-- | plugins/mod_presence.lua | 2 |
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 |