mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 19:10:11 +01:00
Always add draft once
This commit is contained in:
@@ -191,8 +191,9 @@ class Core {
|
||||
boolean squash = false;
|
||||
for (int j = i + 1; j < ops.size(); j++) {
|
||||
EntityOperation next = ops.get(j);
|
||||
if (next.message != null && next.message.equals(op.message) &&
|
||||
(EntityOperation.ADD.equals(next.name) || EntityOperation.DELETE.equals(next.name))) {
|
||||
if (next.message != null &&
|
||||
next.message.equals(op.message) &&
|
||||
EntityOperation.ADD.equals(next.name)) {
|
||||
squash = true;
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user