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:
Kim Alvefur 2020-04-26 10:58:22 +02:00
parent 14083d021e
commit fc3bee71fd

View file

@ -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;