Changeset

10026:1117138fa372 0.11

mod_announce: Check for admin on current virtualhost instead of global (fixes #1365) (thanks yc)
author Kim Alvefur <zash@zash.se>
date Mon, 27 May 2019 12:05:35 +0200
parents 10016:af8c514e5cf7
children 10027:c0ee2ed8ef19 10028:79ba2d709e72
files plugins/mod_announce.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_announce.lua	Tue May 21 08:52:21 2019 +0200
+++ b/plugins/mod_announce.lua	Mon May 27 12:05:35 2019 +0200
@@ -44,7 +44,7 @@
 		return; -- Not an announcement
 	end
 
-	if not is_admin(stanza.attr.from) then
+	if not is_admin(stanza.attr.from, host) then
 		-- Not an admin? Not allowed!
 		module:log("warn", "Non-admin '%s' tried to send server announcement", stanza.attr.from);
 		return;