mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-28 11:55:20 +01:00
Allow deleting RAW operations
This commit is contained in:
@@ -181,12 +181,15 @@ public class FragmentOperations extends FragmentBase {
|
||||
|
||||
List<EntityOperation> ops = new ArrayList<>();
|
||||
|
||||
// ADD, SEND, EXISTS, SUBSCRIBE
|
||||
|
||||
if (error)
|
||||
addAll(ops, db.operation().getOperationsError());
|
||||
|
||||
if (fetch) {
|
||||
addAll(ops, db.operation().getOperations(EntityOperation.FETCH));
|
||||
addAll(ops, db.operation().getOperations(EntityOperation.DOWNLOAD));
|
||||
addAll(ops, db.operation().getOperations(EntityOperation.RAW));
|
||||
addAll(ops, db.operation().getOperations(EntityOperation.BODY));
|
||||
addAll(ops, db.operation().getOperations(EntityOperation.ATTACHMENT));
|
||||
addAll(ops, db.operation().getOperations(EntityOperation.HEADERS));
|
||||
|
||||
Reference in New Issue
Block a user