# HG changeset patch # User Kim Alvefur # Date 1587892381 -7200 # Node ID b4cbe72966c9221c6c81c54a5b502e5683a2586c # Parent 8cecb85e4bc476ad7cee2b2f03460b217870dfcc mod_csi_simple: Consider nonzas important This case was previously handled by fall-trough at the end of the function. diff -r 8cecb85e4bc4 -r b4cbe72966c9 plugins/mod_csi_simple.lua --- a/plugins/mod_csi_simple.lua Sun Apr 26 10:58:22 2020 +0200 +++ b/plugins/mod_csi_simple.lua Sun Apr 26 11:13:01 2020 +0200 @@ -20,6 +20,10 @@ if not st.is_stanza(stanza) then return true; end + if stanza.attr.xmlns ~= nil then + -- stream errors, stream management etc + return true; + end local st_name = stanza.name; if not st_name then return false; end local st_type = stanza.attr.type;