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

This commit is contained in:
Waqas Hussain 2010-06-08 16:26:01 +05:00
parent c49bc6b710
commit 7b1132921d

View file

@ -22,7 +22,6 @@ function handle_announcement(data)
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