changeset 2275:7f228bf82fe5

mod_spam_reporting: Hook the blocking action, not blocklist fetching
author Kim Alvefur <zash@zash.se>
date Sat, 20 Aug 2016 17:13:43 +0200
parents 43e647b8dd9f
children 1b12ccbbd9b2
files mod_spam_reporting/mod_spam_reporting.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_spam_reporting/mod_spam_reporting.lua	Thu Aug 18 20:39:14 2016 +0200
+++ b/mod_spam_reporting/mod_spam_reporting.lua	Sat Aug 20 17:13:43 2016 +0200
@@ -6,7 +6,7 @@
 module:add_feature("urn:xmpp:reporting:reason:spam:0");
 module:add_feature("urn:xmpp:reporting:reason:abuse:0");
 
-module:hook("iq-get/self/urn:xmpp:blocking:blocklist", function (event)
+module:hook("iq-set/self/urn:xmpp:blocking:block", function (event)
 	for item in event.stanza.tags[1]:childtags("item") do
 		local report = item:get_child("report", "urn:xmpp:reporting:0");
 		local jid = item.attr.jid;