mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-03 11:28:41 +01:00
Fixed skipping ADD operations
This commit is contained in:
@@ -58,7 +58,9 @@ public class TupleOperationEx extends EntityOperation {
|
||||
|
||||
key.priority = this.priority;
|
||||
|
||||
if (FETCH.equals(name))
|
||||
if (ADD.equals(name) || DELETE.equals(name)) {
|
||||
key.id = "msg:" + message;
|
||||
} else if (FETCH.equals(name))
|
||||
try {
|
||||
JSONArray jargs = new JSONArray(args);
|
||||
long uid = jargs.getLong(0);
|
||||
|
||||
Reference in New Issue
Block a user