diff options
author | Kim Alvefur <zash@zash.se> | 2021-01-08 17:32:06 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-01-08 17:32:06 +0100 |
commit | cb1282bfd0959b52c0725e2249c07c9319b58da0 (patch) | |
tree | 03c2ada302cd773249d2ff16800726af5a9b49c4 /plugins | |
parent | 3715828498c44f63dc25a6bd1b918fade764a567 (diff) | |
download | prosody-cb1282bfd0959b52c0725e2249c07c9319b58da0.tar.gz prosody-cb1282bfd0959b52c0725e2249c07c9319b58da0.zip |
mod_csi_simple,mod_carbons,mod_mam: Update comment about XEP-0353
It went back to Deferred
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_carbons.lua | 2 | ||||
-rw-r--r-- | plugins/mod_csi_simple.lua | 2 | ||||
-rw-r--r-- | plugins/mod_mam/mod_mam.lua | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mod_carbons.lua b/plugins/mod_carbons.lua index e0f0a711..73d25c07 100644 --- a/plugins/mod_carbons.lua +++ b/plugins/mod_carbons.lua @@ -56,7 +56,7 @@ local function should_copy(stanza, c2s, user_bare) --> boolean, reason: string end if stanza:get_child(nil, "urn:xmpp:jingle-message:0") then - -- XXX Experimental XEP stuck in Proposed for almost a year at the time of this comment + -- XXX Experimental XEP return true, "jingle call"; end diff --git a/plugins/mod_csi_simple.lua b/plugins/mod_csi_simple.lua index d814f083..fed8a8bd 100644 --- a/plugins/mod_csi_simple.lua +++ b/plugins/mod_csi_simple.lua @@ -68,7 +68,7 @@ function is_important(stanza) --> boolean, reason: string return true, "invite"; end if stanza:get_child(nil, "urn:xmpp:jingle-message:0") then - -- XXX Experimental XEP stuck in Proposed for almost a year at the time of this comment + -- XXX Experimental XEP return true, "jingle call"; end for important in important_payloads do diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index 4fe714eb..dd498fdd 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -316,7 +316,7 @@ local function should_store(stanza, c2s) --> boolean, reason: string return true, "invite"; end if stanza:get_child(nil, "urn:xmpp:jingle-message:0") then - -- XXX Experimental XEP stuck in Proposed for almost a year at the time of this comment + -- XXX Experimental XEP return true, "jingle call"; end |