mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_csi_simple: Consider nonzas important
This case was previously handled by fall-trough at the end of the function.
This commit is contained in:
parent
fc3bee71fd
commit
ea91b4cc7b
1 changed files with 4 additions and 0 deletions
|
@ -20,6 +20,10 @@ module:hook("csi-is-stanza-important", function (event)
|
|||
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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue