# HG changeset patch # User Kim Alvefur # Date 1592760054 -7200 # Node ID 22b1298403ffb24b02ae54e4b873e1a6c1d1f33d # Parent 0d7d71dee0a0225f82877ab5cdffee1a5a807e8a mod_muc_mam: Don't strip MUC tags, fix #1567 diff -r 0d7d71dee0a0 -r 22b1298403ff plugins/mod_muc_mam.lua --- a/plugins/mod_muc_mam.lua Sat May 23 14:17:04 2020 +0200 +++ b/plugins/mod_muc_mam.lua Sun Jun 21 19:20:54 2020 +0200 @@ -318,9 +318,6 @@ and jid_prep(tag.attr.by) == room.jid then return nil; end - if tag.name == "x" and tag.attr.xmlns == xmlns_muc_user then - return nil; - end return tag; end);