plugins/mod_csi_simple.lua
changeset 10774 b4cbe72966c9
parent 10773 8cecb85e4bc4
child 10775 c562edcf51bf
--- 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;