# HG changeset patch # User Kim Alvefur # Date 1641919886 -3600 # Node ID 1c47162dd9656c895376c7d581971fe3a527e4ae # Parent e4530bdbf5f395ca5ca1c8523f667d32e6251bae plugins: Update for namespace bump in XEP-0353 v0.4.0 diff -r e4530bdbf5f3 -r 1c47162dd965 doc/doap.xml --- a/doc/doap.xml Tue Feb 01 14:46:42 2022 +0100 +++ b/doc/doap.xml Tue Jan 11 17:51:26 2022 +0100 @@ -708,7 +708,7 @@ - 0.3.1 + 0.4.0 0.11.6 complete triggers buffer flush in mod_csi_simple since 0.11.6; recognised by mod_carbons and mod_mam since 0.12 diff -r e4530bdbf5f3 -r 1c47162dd965 plugins/mod_carbons.lua --- a/plugins/mod_carbons.lua Tue Feb 01 14:46:42 2022 +0100 +++ b/plugins/mod_carbons.lua Tue Jan 11 17:51:26 2022 +0100 @@ -57,7 +57,7 @@ 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 -r e4530bdbf5f3 -r 1c47162dd965 plugins/mod_csi_simple.lua --- a/plugins/mod_csi_simple.lua Tue Feb 01 14:46:42 2022 +0100 +++ b/plugins/mod_csi_simple.lua Tue Jan 11 17:51:26 2022 +0100 @@ -69,7 +69,7 @@ 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 -r e4530bdbf5f3 -r 1c47162dd965 plugins/mod_mam/mod_mam.lua --- a/plugins/mod_mam/mod_mam.lua Tue Feb 01 14:46:42 2022 +0100 +++ b/plugins/mod_mam/mod_mam.lua Tue Jan 11 17:51:26 2022 +0100 @@ -370,7 +370,7 @@ 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