aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-09-29 20:48:58 +0200
committerKim Alvefur <zash@zash.se>2019-09-29 20:48:58 +0200
commitb3e191791374f0d1dede7837475ea65c941836dc (patch)
tree8eb4d41e0e450809742e84cd3e87eb0d1adfd01a
parent469bfe7d6b3753aac14c9a576968391c94668e35 (diff)
parentdfa96d659ccfe41766f37767faef45fc5a8ae60e (diff)
downloadprosody-b3e191791374f0d1dede7837475ea65c941836dc.tar.gz
prosody-b3e191791374f0d1dede7837475ea65c941836dc.zip
Merge 0.11-trunk
-rw-r--r--plugins/muc/muc.lib.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua
index 5dea3fef..d84f4ac1 100644
--- a/plugins/muc/muc.lib.lua
+++ b/plugins/muc/muc.lib.lua
@@ -777,6 +777,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)