Software / code / prosody
Comparison
plugins/mod_csi_simple.lua @ 11260:08b397c21805
mod_csi_simple,mod_carbons,mod_mam: Update comment about XEP-0353
It went back to Deferred
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Fri, 08 Jan 2021 17:32:06 +0100 |
| parent | 10833:ac691f305ea7 |
| child | 11379:5c820553ef82 |
comparison
equal
deleted
inserted
replaced
| 11259:9500625ecac9 | 11260:08b397c21805 |
|---|---|
| 66 end | 66 end |
| 67 if stanza:get_child("x", "jabber:x:conference") or stanza:find("{http://jabber.org/protocol/muc#user}x/invite") then | 67 if stanza:get_child("x", "jabber:x:conference") or stanza:find("{http://jabber.org/protocol/muc#user}x/invite") then |
| 68 return true, "invite"; | 68 return true, "invite"; |
| 69 end | 69 end |
| 70 if stanza:get_child(nil, "urn:xmpp:jingle-message:0") then | 70 if stanza:get_child(nil, "urn:xmpp:jingle-message:0") then |
| 71 -- XXX Experimental XEP stuck in Proposed for almost a year at the time of this comment | 71 -- XXX Experimental XEP |
| 72 return true, "jingle call"; | 72 return true, "jingle call"; |
| 73 end | 73 end |
| 74 for important in important_payloads do | 74 for important in important_payloads do |
| 75 if stanza:find(important) then | 75 if stanza:find(important) then |
| 76 return true; | 76 return true; |