plugins: Update for namespace bump in XEP-0353 v0.4.0

This commit is contained in:
Kim Alvefur 2022-01-11 17:51:26 +01:00
parent 4973762abb
commit 168197a05f
4 changed files with 4 additions and 4 deletions

View file

@ -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