mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 14:41:08 +00:00
Prevent loop
This commit is contained in:
parent
1e2e6e60f7
commit
c8847fd802
1 changed files with 2 additions and 1 deletions
|
@ -3794,7 +3794,8 @@ class Core {
|
|||
if (rule.stop)
|
||||
break;
|
||||
}
|
||||
if (executed)
|
||||
if (executed &&
|
||||
!message.hasKeyword(MessageHelper.FLAG_FILTERED))
|
||||
EntityOperation.queue(context, message, EntityOperation.KEYWORD, MessageHelper.FLAG_FILTERED, true);
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
|
|
Loading…
Reference in a new issue