diff options
author | Kim Alvefur <zash@zash.se> | 2018-11-17 15:28:49 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-11-17 15:28:49 +0100 |
commit | 301cad9b1641efbd1f185abf206c4071b81b019b (patch) | |
tree | 632b38a0e6d0f171b1dc376b2cbb56ac62e049a4 | |
parent | a83cf53a220529936f62cae63d5e55677eb145b3 (diff) | |
download | prosody-301cad9b1641efbd1f185abf206c4071b81b019b.tar.gz prosody-301cad9b1641efbd1f185abf206c4071b81b019b.zip |
mod_csi_simple: Skip delay tags on objects other than stanzas (thanks quest)
This may be triggered by sending strings, eg as done by mod_c2s for
keepalives, stream errors, "</stream>".
-rw-r--r-- | plugins/mod_csi_simple.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/mod_csi_simple.lua b/plugins/mod_csi_simple.lua index 1535edae..6fc88291 100644 --- a/plugins/mod_csi_simple.lua +++ b/plugins/mod_csi_simple.lua @@ -82,8 +82,10 @@ module:hook("csi-client-inactive", function (event) pump:flush(); send(stanza); else - stanza = st.clone(stanza); - stanza:add_direct_child(st.stanza("delay", {xmlns = "urn:xmpp:delay", from = bare_jid, stamp = dt.datetime()})); + if st.is_stanza(stanza) then + stanza = st.clone(stanza); + stanza:add_direct_child(st.stanza("delay", {xmlns = "urn:xmpp:delay", from = bare_jid, stamp = dt.datetime()})); + end pump:push(stanza); end return true; |