diff options
author | Kim Alvefur <zash@zash.se> | 2018-03-24 18:16:08 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-03-24 18:16:08 +0100 |
commit | 28cfb73f59af94f63198065f3a2802a0cb803975 (patch) | |
tree | ad5868bccda6a8fe975d828342e3d0582022e9ce /plugins/mod_muc_mam.lua | |
parent | 8cb9cbfc3ba05cf457e44fdb6b30f0f431a2d716 (diff) | |
download | prosody-28cfb73f59af94f63198065f3a2802a0cb803975.tar.gz prosody-28cfb73f59af94f63198065f3a2802a0cb803975.zip |
mod_muc_mam: Let muc/history.lib decide which messages to store
Diffstat (limited to 'plugins/mod_muc_mam.lua')
-rw-r--r-- | plugins/mod_muc_mam.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/mod_muc_mam.lua b/plugins/mod_muc_mam.lua index dfef91c9..8d69e83d 100644 --- a/plugins/mod_muc_mam.lua +++ b/plugins/mod_muc_mam.lua @@ -334,11 +334,9 @@ local function save_to_history(self, stanza) end end -module:hook("muc-broadcast-message", function (event) +module:hook("muc-add-history", function (event) local room, stanza = event.room, event.stanza; - if stanza:get_child("body") then - save_to_history(room, stanza); - end + save_to_history(room, stanza); end); if module:get_option_boolean("muc_log_presences", true) then |