mod_csi_simple: Tweak check for <body>

There were code that checked the body for mentions but isn't included.
This commit is contained in:
Kim Alvefur 2019-01-06 21:03:09 +01:00
parent 1e9a016034
commit 38c98346b1

View file

@ -63,8 +63,10 @@ module:hook("csi-is-stanza-important", function (event)
if st_type == "headline" then
return false;
end
local body = stanza:get_child_text("body");
return body;
if stanza:get_child("body") then
return true;
end
return false;
end
return true;
end, -1);