mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_s2s: Clone queued outgoing stanzas to prevent changes
This clone call was lost in 902d25cd0557 Affects e.g. presence broadcasts, where the same stanza is sent many times while mutating the 'to' attribute.
This commit is contained in:
parent
b126efdd1c
commit
e097713883
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ function route_to_new_session(event)
|
|||
-- Store in buffer
|
||||
host_session.bounce_sendq = bounce_sendq;
|
||||
host_session.sendq = queue.new(sendq_size);
|
||||
host_session.sendq:push(stanza);
|
||||
host_session.sendq:push(st.clone(stanza));
|
||||
log("debug", "stanza [%s] queued until connection complete", stanza.name);
|
||||
-- FIXME Cleaner solution to passing extra data from resolvers to net.server
|
||||
-- This mt-clone allows resolvers to add extra data, currently used for DANE TLSA records
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue