mod_csi_simple: Don't set <delay> stamps on <iq> stanzas (fixes #1248)

This commit is contained in:
Kim Alvefur 2018-11-27 18:56:22 +01:00
parent 6f941bbc64
commit 0db6c3f669

View file

@ -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