Software /
code /
prosody
Changeset
6352:b703e6930e4c
mod_blocklist: Use full word as variable name, we can afford that
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 12 Aug 2014 15:42:20 +0200 |
parents | 6351:10dc228a45a4 |
children | 6353:a868d5d6a83f |
files | plugins/mod_blocklist.lua |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_blocklist.lua Tue Aug 12 15:40:00 2014 +0200 +++ b/plugins/mod_blocklist.lua Tue Aug 12 15:42:20 2014 +0200 @@ -103,11 +103,11 @@ local function edit_blocklist(event) local origin, stanza = event.origin, event.stanza; local username = origin.username; - local act = stanza.tags[1]; + local action = stanza.tags[1]; local new = {}; local jid; - for item in act:childtags("item") do + for item in action:childtags("item") do jid = jid_prep(item.attr.jid); if not jid then return origin.send(st_error_reply(stanza, "modify", "jid-malformed")); @@ -116,7 +116,7 @@ new[jid] = is_contact_subscribed(username, host, jid) or false; end - local mode = act.name == "block" or nil; + local mode = action.name == "block" or nil; if mode and not next(new) then -- <block/> element does not contain at least one <item/> child element @@ -156,7 +156,7 @@ end if sessions[username] then local blocklist_push = st.iq({ type = "set", id = "blocklist-push" }) - :add_child(act); -- I am lazy + :add_child(action); -- I am lazy for _, session in pairs(sessions[username].sessions) do if session.interested_blocklist then