mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_csi_simple: Unpack Carbons-forwarded messages (fixes part of #1250)
This commit is contained in:
parent
9251fa5500
commit
05b481ec89
1 changed files with 4 additions and 0 deletions
|
@ -66,6 +66,10 @@ module:hook("csi-is-stanza-important", function (event)
|
|||
if stanza:get_child("sent", "urn:xmpp:carbons:2") then
|
||||
return true;
|
||||
end
|
||||
local forwarded = stanza:find("{urn:xmpp:carbons:2}received/{urn:xmpp:forward:0}/{jabber:client}message");
|
||||
if forwarded then
|
||||
stanza = forwarded;
|
||||
end
|
||||
if stanza:get_child("body") then
|
||||
return true;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue