From 38c98346b185543fa9f79ab6120f997368662538 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 6 Jan 2019 21:03:09 +0100 Subject: mod_csi_simple: Tweak check for There were code that checked the body for mentions but isn't included. --- plugins/mod_csi_simple.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/mod_csi_simple.lua b/plugins/mod_csi_simple.lua index 1efff38f..51644515 100644 --- a/plugins/mod_csi_simple.lua +++ b/plugins/mod_csi_simple.lua @@ -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); -- cgit v1.2.3