@ -451,6 +451,7 @@ class Core {
db.operation().setOperationError(op.id, op.error);
if (message != null &&
!EntityOperation.FETCH.equals(op.name) &&
!(ex instanceof IllegalArgumentException))
db.message().setMessageError(message.id, op.error);
@ -482,7 +482,10 @@ public class EntityOperation {
if (f == null)
return;
queue(context, f, FETCH, m.uid);
if (EntityOperation.FETCH.equals(name))
EntityOperation.sync(context, f.id, false);
else
}