mod_csi_simple: Consider messages with subject (eg MUC joins) (fixes part of #1250)

This commit is contained in:
Kim Alvefur 2019-01-06 21:09:00 +01:00
parent 05b481ec89
commit e03098631f

View file

@ -73,6 +73,9 @@ module:hook("csi-is-stanza-important", function (event)
if stanza:get_child("body") then
return true;
end
if stanza:get_child("subject") then
return true;
end
return false;
end
return true;