diff options
author | Kim Alvefur <zash@zash.se> | 2019-03-04 12:56:31 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-03-04 12:56:31 +0100 |
commit | 200794a5bae590dda05c798365482df74d70a9e5 (patch) | |
tree | 90e8f13bc3ad080e0fc20250ecdbfc7c61ba6ba8 /plugins | |
parent | 8562c36d070893c66bb745ac9e217ac7d2f4e29a (diff) | |
download | prosody-200794a5bae590dda05c798365482df74d70a9e5.tar.gz prosody-200794a5bae590dda05c798365482df74d70a9e5.zip |
mod_muc_mam: Strip the stanza 'to' attribute (fixes #1259)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_muc_mam.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_muc_mam.lua b/plugins/mod_muc_mam.lua index 166a5c71..c92e22cd 100644 --- a/plugins/mod_muc_mam.lua +++ b/plugins/mod_muc_mam.lua @@ -208,6 +208,7 @@ module:hook("iq-set/bare/"..xmlns_mam..":query", function(event) if not is_stanza(item) then item = st.deserialize(item); end + item.attr.to = nil; item.attr.xmlns = "jabber:client"; fwd_st:add_child(item); @@ -329,6 +330,7 @@ local function save_to_history(self, stanza) if stanza.name == "message" and self:get_whois() == "anyone" then stored_stanza = st.clone(stanza); + stored_stanza.attr.to = nil; local actor = jid_bare(self._occupants[stanza.attr.from].jid); local affiliation = self:get_affiliation(actor) or "none"; local role = self:get_role(actor) or self:get_default_role(affiliation); |