diff options
author | Kim Alvefur <zash@zash.se> | 2018-03-09 21:50:01 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-03-09 21:50:01 +0100 |
commit | ee8f6f36023bf330fcc1468cdfcb74977925c82d (patch) | |
tree | 789a64cb4e1f5509a7f327b15de4a4baca074e7e /plugins/mod_presence.lua | |
parent | 6a7ceb01396a195688fc932ca2f30530f7206a34 (diff) | |
download | prosody-ee8f6f36023bf330fcc1468cdfcb74977925c82d.tar.gz prosody-ee8f6f36023bf330fcc1468cdfcb74977925c82d.zip |
mod_presence: Ignore unused argument but make note of its use elsewhere [luacheck]
Diffstat (limited to 'plugins/mod_presence.lua')
-rw-r--r-- | plugins/mod_presence.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua index 1dcb0aeb..4bce745a 100644 --- a/plugins/mod_presence.lua +++ b/plugins/mod_presence.lua @@ -120,6 +120,8 @@ function handle_normal_presence(origin, stanza) stanza.attr.to = nil; -- reset it end +-- luacheck: ignore 212/recipient_session +-- TODO This argument is used in 3rd party modules function send_presence_of_available_resources(user, host, jid, recipient_session, stanza) local h = hosts[host]; local count = 0; |