mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-31 20:25:38 +00:00
Skip delete send ops
This commit is contained in:
parent
3e65f9a2af
commit
073ac5fb61
1 changed files with 4 additions and 0 deletions
|
@ -390,6 +390,10 @@ public class ServiceSend extends ServiceBase implements SharedPreferences.OnShar
|
|||
break;
|
||||
|
||||
EntityOperation op = ops.get(0);
|
||||
if (db.operation().getOperation(op.id) == null) {
|
||||
ops.remove(op);
|
||||
continue;
|
||||
}
|
||||
|
||||
EntityMessage message = null;
|
||||
if (op.message != null)
|
||||
|
|
Loading…
Reference in a new issue