aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_blocklist.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-08-12 15:40:00 +0200
committerKim Alvefur <zash@zash.se>2014-08-12 15:40:00 +0200
commit49c8878c9dfdea2269eb131cec83b06eb6c1dd32 (patch)
tree529684301c284e0e1ba4b234c749a69c898c27ae /plugins/mod_blocklist.lua
parentea8e101a96e9e0150ddf86fcf5475285f4427f3e (diff)
downloadprosody-49c8878c9dfdea2269eb131cec83b06eb6c1dd32.tar.gz
prosody-49c8878c9dfdea2269eb131cec83b06eb6c1dd32.zip
mod_blocklist: Correct comment
Diffstat (limited to 'plugins/mod_blocklist.lua')
-rw-r--r--plugins/mod_blocklist.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_blocklist.lua b/plugins/mod_blocklist.lua
index 1a43dfd3..3d528eb1 100644
--- a/plugins/mod_blocklist.lua
+++ b/plugins/mod_blocklist.lua
@@ -98,7 +98,7 @@ module:hook("iq-get/self/urn:xmpp:blocking:blocklist", function (event)
return origin.send(reply);
end);
--- Add or remove a bare jid from the blocklist
+-- Add or remove some jid(s) from the blocklist
-- We want this to be atomic and not do a partial update
local function edit_blocklist(event)
local origin, stanza = event.origin, event.stanza;