aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_pep_plus.lua
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2017-04-15 01:26:19 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2017-04-15 01:26:19 +0100
commit33e5314de0d492f866fb7e208260ca0801170a93 (patch)
treef391179d1810f9a0ff45902c2f00424fd69f405d /plugins/mod_pep_plus.lua
parenta3dcce859a4270ae04b92881f03bb25bb766b70c (diff)
downloadprosody-33e5314de0d492f866fb7e208260ca0801170a93.tar.gz
prosody-33e5314de0d492f866fb7e208260ca0801170a93.zip
mod_pep_plus: Fix all of the warnings [luacheck]
Diffstat (limited to 'plugins/mod_pep_plus.lua')
-rw-r--r--plugins/mod_pep_plus.lua8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/mod_pep_plus.lua b/plugins/mod_pep_plus.lua
index f45d5ef3..3b230969 100644
--- a/plugins/mod_pep_plus.lua
+++ b/plugins/mod_pep_plus.lua
@@ -12,7 +12,6 @@ local xmlns_pubsub_owner = "http://jabber.org/protocol/pubsub#owner";
local lib_pubsub = module:require "pubsub";
local handlers = lib_pubsub.handlers;
-local pubsub_error_reply = lib_pubsub.pubsub_error_reply;
local empty_set = set_new();
@@ -179,8 +178,8 @@ end
function handle_pubsub_iq(event)
local origin, stanza = event.origin, event.stanza;
- local pubsub = stanza.tags[1];
- local action = pubsub.tags[1];
+ local pubsub_tag = stanza.tags[1];
+ local action = pubsub_tag.tags[1];
if not action then
return origin.send(st.error_reply(stanza, "cancel", "bad-request"));
end
@@ -225,7 +224,7 @@ end
local function resend_last_item(jid, node, service)
local ok, items = service:get_items(node, jid);
if not ok then return; end
- for i, id in ipairs(items) do
+ for _, id in ipairs(items) do
service.config.broadcaster("items", node, { [jid] = true }, items[id]);
end
end
@@ -271,7 +270,6 @@ module:hook("presence/bare", function(event)
local user = stanza.attr.to or (origin.username..'@'..origin.host);
local t = stanza.attr.type;
local self = not stanza.attr.to;
- local service = get_pep_service(user);
if not t then -- available presence
if self or subscription_presence(user, stanza.attr.from) then