aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_carbons.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-10-26 22:22:14 +0200
committerKim Alvefur <zash@zash.se>2017-10-26 22:22:14 +0200
commitc42b40b07d333623192e9f4747471aa07ec9a0b0 (patch)
tree415c5ffd361cb4212fd774b16cb92e8872eb80f9 /plugins/mod_carbons.lua
parent5841c8c0645e1ce573b00e68d5b44c8f7edcf93e (diff)
downloadprosody-c42b40b07d333623192e9f4747471aa07ec9a0b0.tar.gz
prosody-c42b40b07d333623192e9f4747471aa07ec9a0b0.zip
mod_carbons: Synthesize a 'to' attribute for carbons of stanzas to "self" (fixes #956)
Diffstat (limited to 'plugins/mod_carbons.lua')
-rw-r--r--plugins/mod_carbons.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_carbons.lua b/plugins/mod_carbons.lua
index cb7d9233..1dcd4a07 100644
--- a/plugins/mod_carbons.lua
+++ b/plugins/mod_carbons.lua
@@ -76,6 +76,9 @@ local function message_handler(event, c2s)
-- Create the carbon copy and wrap it as per the Stanza Forwarding XEP
local copy = st.clone(stanza);
+ if c2s and not orig_to then
+ stanza.attr.to = bare_from;
+ end
copy.attr.xmlns = "jabber:client";
local carbon = st.message{ from = bare_jid, type = orig_type, }
:tag(c2s and "sent" or "received", { xmlns = xmlns_carbons })