From e41f9e8157b8f7e88135a9d1d0e9852e20e2b860 Mon Sep 17 00:00:00 2001 From: M66B Date: Sun, 1 Feb 2026 22:57:07 +0100 Subject: [PATCH] Automation rule actions need a preview text --- app/src/main/java/eu/faircode/email/EntityRule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/eu/faircode/email/EntityRule.java b/app/src/main/java/eu/faircode/email/EntityRule.java index b59943e9de..3bdde4c59d 100644 --- a/app/src/main/java/eu/faircode/email/EntityRule.java +++ b/app/src/main/java/eu/faircode/email/EntityRule.java @@ -184,7 +184,7 @@ public class EntityRule { try { JSONObject jaction = new JSONObject(rule.action); int type = jaction.getInt("type"); - if (type == TYPE_SUMMARIZE) + if (type == TYPE_SUMMARIZE || type == TYPE_AUTOMATION) return true; JSONObject jcondition = new JSONObject(rule.condition);