aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_carbons.lua2
-rw-r--r--plugins/mod_csi_simple.lua2
-rw-r--r--plugins/mod_mam/mod_mam.lua2
3 files changed, 3 insertions, 3 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
diff --git a/plugins/mod_csi_simple.lua b/plugins/mod_csi_simple.lua
index 2420705a..569916b0 100644
--- a/plugins/mod_csi_simple.lua
+++ b/plugins/mod_csi_simple.lua
@@ -69,7 +69,7 @@ function is_important(stanza) --> boolean, reason: string
if stanza:get_child("x", "jabber:x:conference") or stanza:find("{http://jabber.org/protocol/muc#user}x/invite") then
return true, "invite";
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
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua
index 92b49fcd..d4b2b060 100644
--- a/plugins/mod_mam/mod_mam.lua
+++ b/plugins/mod_mam/mod_mam.lua
@@ -370,7 +370,7 @@ local function should_store(stanza, c2s) --> boolean, reason: string
or stanza:find("{http://jabber.org/protocol/muc#user}x/invite") then
return true, "invite";
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