# HG changeset patch # User Kim Alvefur # Date 1582404091 -3600 # Node ID 341850e8866f542cc924660cb125660daf514a84 # Parent a7ba6929d425dba9544fdb129edb788fd3a7d234 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 diff -r a7ba6929d425 -r 341850e8866f 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;