diff options
Diffstat (limited to 'plugins/mod_carbons.lua')
-rw-r--r-- | plugins/mod_carbons.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_carbons.lua b/plugins/mod_carbons.lua index d8d6b3e3..5b0bdeb7 100644 --- a/plugins/mod_carbons.lua +++ b/plugins/mod_carbons.lua @@ -57,7 +57,7 @@ local function should_copy(stanza, c2s, user_bare) --> boolean, reason: string return true, "bounce"; end - if stanza:get_child(nil, "urn:xmpp:jingle-message:0") then + if stanza:get_child(nil, "urn:xmpp:jingle-message:0") or stanza:get_child(nil, "urn:xmpp:jingle-message:1") then -- XXX Experimental XEP return true, "jingle call"; end |