mod_muc_moderation: Broadcast retraction via method that saves it
authorKim Alvefur <zash@zash.se>
Sat, 22 Feb 2020 21:41:31 +0100
changeset 3906 341850e8866f
parent 3905 a7ba6929d425
child 3907 cfeb93b80621
mod_muc_moderation: Broadcast retraction via method that saves it Otherwise the retraction is not saved to history, so that those who join after it was sent are unaware of the retraction
mod_muc_moderation/mod_muc_moderation.lua
--- a/mod_muc_moderation/mod_muc_moderation.lua	Sat Feb 22 21:40:19 2020 +0100
+++ b/mod_muc_moderation/mod_muc_moderation.lua	Sat Feb 22 21:41:31 2020 +0100
@@ -109,7 +109,7 @@
 
 	-- Done, tell people about it
 	module:log("info", "Message with id '%s' in room %s moderated by %s, reason: %s", stanza_id, room_jid, actor, reason);
-	room:broadcast(announcement);
+	room:broadcast_message(announcement);
 
 	origin.send(st.reply(stanza));
 	return true;