diff options
author | Kim Alvefur <zash@zash.se> | 2018-11-17 15:36:10 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-11-17 15:36:10 +0100 |
commit | 17cab2b995cdf1842c6d6399a07f1d4ee421902d (patch) | |
tree | b0006784c0e3fe2511d58db3b32034f88cd89c17 /plugins | |
parent | e276a8ee7bbc88e771a5bb9af61062f379990570 (diff) | |
download | prosody-17cab2b995cdf1842c6d6399a07f1d4ee421902d.tar.gz prosody-17cab2b995cdf1842c6d6399a07f1d4ee421902d.zip |
mod_csi_simple: Consider non-stanza objects important
Most cases are for keepalive or stream closing, where it needs to be
flushed anyways.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_csi_simple.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_csi_simple.lua b/plugins/mod_csi_simple.lua index 6fc88291..c8151df5 100644 --- a/plugins/mod_csi_simple.lua +++ b/plugins/mod_csi_simple.lua @@ -48,6 +48,9 @@ local queue_size = module:get_option_number("csi_queue_size", 256); module:hook("csi-is-stanza-important", function (event) local stanza = event.stanza; + if not st.is_stanza(stanza) then + return true; + end local st_name = stanza.name; if not st_name then return false; end local st_type = stanza.attr.type; |