diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:58:03 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:58:03 +0100 |
commit | 4d3004e3fc11a53b3668aac09a19e12fc8d19246 (patch) | |
tree | 7351b31be9a66c1427253ae3a25a8b23fc1b361f /core/sessionmanager.lua | |
parent | de51b150af7229ca6d30cdaa89e5201cfce59715 (diff) | |
download | prosody-4d3004e3fc11a53b3668aac09a19e12fc8d19246.tar.gz prosody-4d3004e3fc11a53b3668aac09a19e12fc8d19246.zip |
sessionmanager: Rename unused loop variables to '_' [luacheck]
Diffstat (limited to 'core/sessionmanager.lua')
-rw-r--r-- | core/sessionmanager.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/sessionmanager.lua b/core/sessionmanager.lua index 5e4e2991..9ff42aed 100644 --- a/core/sessionmanager.lua +++ b/core/sessionmanager.lua @@ -198,7 +198,7 @@ function send_to_available_resources(username, host, stanza) local count = 0; local user = bare_sessions[jid]; if user then - for k, session in pairs(user.sessions) do + for _, session in pairs(user.sessions) do if session.presence then session.send(stanza); count = count + 1; @@ -213,7 +213,7 @@ function send_to_interested_resources(user, host, stanza) local count = 0; local user = bare_sessions[jid]; if user then - for k, session in pairs(user.sessions) do + for _, session in pairs(user.sessions) do if session.interested then session.send(stanza); count = count + 1; |