mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_announce: Work with non-local admins
This commit is contained in:
parent
030772c85e
commit
38fec5d17d
1 changed files with 2 additions and 2 deletions
|
@ -11,9 +11,9 @@ function handle_announcement(data)
|
|||
return; -- Not an announcement
|
||||
end
|
||||
|
||||
if not is_admin(origin.full_jid) then
|
||||
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(origin.full_jid)));
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue