mod_muc_mam: Strip the stanza 'to' attribute (fixes #1259)

This commit is contained in:
Kim Alvefur 2019-03-04 12:56:31 +01:00
parent 5d4504e51b
commit dad8bb5fee

View file

@ -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);