# HG changeset patch # User Kim Alvefur # Date 1588974468 -7200 # Node ID b4c2c7fae7c05cae18330e1d00eb4c2225ebea61 # Parent c432b7172fa3cf26018067cd1f3d596e65653a87 mod_csi_simple: Consider XEP-0353: Jingle Message Initiation important Improves experience with VoIP calls initiated via JMI Closes #1548 diff -r c432b7172fa3 -r b4c2c7fae7c0 plugins/mod_csi_simple.lua --- a/plugins/mod_csi_simple.lua Fri May 08 22:39:01 2020 +0200 +++ b/plugins/mod_csi_simple.lua Fri May 08 23:47:48 2020 +0200 @@ -79,6 +79,9 @@ if stanza:get_child("encryption", "urn:xmpp:eme:0") then return true; end + if stanza:get_child(nil, "urn:xmpp:jingle-message:0") then + return true; + end return false; end return true;