mod_watch_spam_reports/mod_watch_spam_reports.lua
changeset 4661 78ef5d9e2361
parent 4615 7a9e1c81c63e
child 4667 6e5572fc6840
--- a/mod_watch_spam_reports/mod_watch_spam_reports.lua	Wed Aug 25 15:05:56 2021 +0200
+++ b/mod_watch_spam_reports/mod_watch_spam_reports.lua	Wed Aug 25 16:31:10 2021 +0200
@@ -7,7 +7,7 @@
 
 module:hook("spam_reporting/spam-report", function(event)
 	local reporter_bare_jid = jid.bare(event.stanza.attr.from)
-	local report = reporter_bare_jid.." reported spam from "..event.jid..": "..event.reason
+	local report = reporter_bare_jid.." reported spam from "..event.jid..": "..(event.reason or "no reason given")
 	for admin_jid in admins
 		do
 			module:send(st.message({from=host,
@@ -18,7 +18,7 @@
 
 module:hook("spam_reporting/abuse-report", function(event)
 	local reporter_bare_jid = jid.bare(event.stanza.attr.from)
-	local report = reporter_bare_jid.." reported abuse from "..event.jid..": "..event.reason
+	local report = reporter_bare_jid.." reported abuse from "..event.jid..": "..(event.reason or "no reason given")
 	for admin_jid in admins
 		do
 			module:send(st.message({from=host,