Diff

plugins/mod_announce.lua @ 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
parent 8974:71500c68fed4
child 10545:2fbcdf6da331
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;