diff options
author | Kim Alvefur <zash@zash.se> | 2019-09-29 20:48:00 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-09-29 20:48:00 +0200 |
commit | da04fec77a2f083a2b790e7ad2b8e69eb2f6849e (patch) | |
tree | 0297df47b1815395b08d3f13bf4b84cd95bb9b47 /plugins/muc/muc.lib.lua | |
parent | 54f1f9f4fc6a8e7a3d9ade646f4913717fbeb734 (diff) | |
download | prosody-da04fec77a2f083a2b790e7ad2b8e69eb2f6849e.tar.gz prosody-da04fec77a2f083a2b790e7ad2b8e69eb2f6849e.zip |
MUC: Strip tags with MUC-related namespaces from private messages (fixes #1427)
Prevents duplication since it adds another <{muc#user}x> here
Diffstat (limited to 'plugins/muc/muc.lib.lua')
-rw-r--r-- | plugins/muc/muc.lib.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index a942182d..cf9b46f7 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -779,6 +779,7 @@ function room_mt:handle_message_to_occupant(origin, stanza) return true; end log("debug", "%s sent private message stanza to %s (%s)", from, to, o_data.jid); + stanza = muc_util.filter_muc_x(st.clone(stanza)); stanza:tag("x", { xmlns = "http://jabber.org/protocol/muc#user" }):up(); stanza.attr.from = current_nick; self:route_to_occupant(o_data, stanza) |