mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_csi_simple: Fix autocompletion mistake
This commit is contained in:
parent
1796f20abc
commit
64b9b5a758
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ module:hook("csi-client-inactive", function (event)
|
|||
pump:flush();
|
||||
send(stanza);
|
||||
else
|
||||
if st.is_stanza(stanza) and st.attr.xmlns == nil and st.name ~= "iq" then
|
||||
if st.is_stanza(stanza) and stanza.attr.xmlns == nil and stanza.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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue