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>".
This commit is contained in:
Kim Alvefur 2018-11-17 15:28:49 +01:00
parent 50f6335501
commit 23be1afef6

View file

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