diff options
author | Kim Alvefur <zash@zash.se> | 2018-11-27 18:56:22 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-11-27 18:56:22 +0100 |
commit | 0db6c3f669d4c62d01f86ad9ee1b3754b861dfe1 (patch) | |
tree | 1ac45c24d95d1582c2779b26f01e75965dc5e79d | |
parent | 6f941bbc641b99880b719c78f8ca36e43787c470 (diff) | |
download | prosody-0db6c3f669d4c62d01f86ad9ee1b3754b861dfe1.tar.gz prosody-0db6c3f669d4c62d01f86ad9ee1b3754b861dfe1.zip |
mod_csi_simple: Don't set <delay> stamps on <iq> stanzas (fixes #1248)
-rw-r--r-- | plugins/mod_csi_simple.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_csi_simple.lua b/plugins/mod_csi_simple.lua index f3df5734..551b13c0 100644 --- a/plugins/mod_csi_simple.lua +++ b/plugins/mod_csi_simple.lua @@ -85,7 +85,7 @@ module:hook("csi-client-inactive", function (event) pump:flush(); send(stanza); else - if st.is_stanza(stanza) then + if st.is_stanza(stanza) and st.attr.xmlns == nil and st.name ~= "iq" then stanza = st.clone(stanza); stanza:add_direct_child(st.stanza("delay", {xmlns = "urn:xmpp:delay", from = bare_jid, stamp = dt.datetime()})); end |