mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_muc_mam: Strip the stanza 'to' attribute (fixes #1259)
This commit is contained in:
parent
5d4504e51b
commit
dad8bb5fee
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue