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);