mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_csi_simple: Explicitly consider errors important
This was already the case for presence and iq stanzas but not messages.
This commit is contained in:
parent
14083d021e
commit
fc3bee71fd
1 changed files with 3 additions and 0 deletions
|
@ -23,6 +23,9 @@ module:hook("csi-is-stanza-important", function (event)
|
|||
local st_name = stanza.name;
|
||||
if not st_name then return false; end
|
||||
local st_type = stanza.attr.type;
|
||||
if st_type == "error" then
|
||||
return true;
|
||||
end
|
||||
if st_name == "presence" then
|
||||
if st_type == nil or st_type == "unavailable" then
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue