aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_csi_simple.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-11-27 19:15:33 +0100
committerKim Alvefur <zash@zash.se>2018-11-27 19:15:33 +0100
commit64b9b5a758874d074778dc913a2274f0ff410391 (patch)
tree356eee19ab529406298ce638c9133914cf9e4b50 /plugins/mod_csi_simple.lua
parent1796f20abcadc4626422d9476f88646a8953db6a (diff)
downloadprosody-64b9b5a758874d074778dc913a2274f0ff410391.tar.gz
prosody-64b9b5a758874d074778dc913a2274f0ff410391.zip
mod_csi_simple: Fix autocompletion mistake
Diffstat (limited to 'plugins/mod_csi_simple.lua')
-rw-r--r--plugins/mod_csi_simple.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_csi_simple.lua b/plugins/mod_csi_simple.lua
index 99e4408d..f00279d3 100644
--- a/plugins/mod_csi_simple.lua
+++ b/plugins/mod_csi_simple.lua
@@ -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