mirror of https://github.com/M66B/FairEmail.git
Report op error only if can run
This commit is contained in:
parent
eb589c0524
commit
e6e5d5e9aa
|
@ -530,8 +530,10 @@ class Core {
|
|||
|
||||
if (ops.size() == 0)
|
||||
state.batchCompleted(folder.id, priority, sequence);
|
||||
else
|
||||
else {
|
||||
if (state.batchCanRun(folder.id, priority, sequence))
|
||||
state.error(new OperationCanceledException("Processing"));
|
||||
}
|
||||
} finally {
|
||||
Log.i(folder.name + " end process state=" + state + " pending=" + ops.size());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue