Browse Source

Contribute error to message

main
M66B 5 years ago
parent
commit
5df36d89e6
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      app/src/main/java/eu/faircode/email/ServiceSynchronize.java

+ 6
- 6
app/src/main/java/eu/faircode/email/ServiceSynchronize.java View File

@ -773,15 +773,15 @@ public class ServiceSynchronize extends LifecycleService {
if (message == null)
throw new MessageRemovedException();
if (message.uid == null &&
(EntityOperation.SEEN.equals(op.name) ||
EntityOperation.DELETE.equals(op.name) ||
EntityOperation.MOVE.equals(op.name)))
throw new IllegalArgumentException(op.name + " without uid");
try {
db.message().setMessageError(message.id, null);
if (message.uid == null &&
(EntityOperation.SEEN.equals(op.name) ||
EntityOperation.DELETE.equals(op.name) ||
EntityOperation.MOVE.equals(op.name)))
throw new IllegalArgumentException(op.name + " without uid");
JSONArray jargs = new JSONArray(op.args);
if (EntityOperation.SEEN.equals(op.name))


Loading…
Cancel
Save