mod_csi_simple: Consider messages forwarded from another of the users clients as important (fixes part of #1250)

This commit is contained in:
Kim Alvefur 2019-01-06 21:08:11 +01:00
parent 38c98346b1
commit 9251fa5500

View file

@ -63,6 +63,9 @@ module:hook("csi-is-stanza-important", function (event)
if st_type == "headline" then
return false;
end
if stanza:get_child("sent", "urn:xmpp:carbons:2") then
return true;
end
if stanza:get_child("body") then
return true;
end