mod_announce: Fixed an edge case where non-admins attempting to announce would get two error replies.

Tue, 08 Jun 2010 16:26:01 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Tue, 08 Jun 2010 16:26:01 +0500
changeset 3198
0badae62de28
parent 3187
f22248192c3e
child 3199
fd2389a240a2

mod_announce: Fixed an edge case where non-admins attempting to announce would get two error replies.

plugins/mod_announce.lua file | annotate | diff | comparison | revisions
--- a/plugins/mod_announce.lua	Thu Jun 03 18:09:02 2010 +0500
+++ b/plugins/mod_announce.lua	Tue Jun 08 16:26:01 2010 +0500
@@ -22,7 +22,6 @@
 	if not is_admin(stanza.attr.from) then
 		-- Not an admin? Not allowed!
 		module:log("warn", "Non-admin %s tried to send server announcement", tostring(jid.bare(stanza.attr.from)));
-		origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
 		return;
 	end
 	

mercurial