mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-05 19:21:07 +00:00
Check if folder is open on operations
This commit is contained in:
parent
1650d6c67d
commit
f2cf1673d1
1 changed files with 17 additions and 0 deletions
|
@ -1209,6 +1209,23 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
|||
Log.i(folder.name + " queuing operations=" + added.size() +
|
||||
" init=" + folder.initialize + " poll=" + folder.poll);
|
||||
|
||||
executor.submit(new Helper.PriorityRunnable(-1000, 0) {
|
||||
@Override
|
||||
public void run() {
|
||||
try {
|
||||
Folder ifolder = mapFolders.get(folder);
|
||||
if (ifolder != null) {
|
||||
boolean isOpen = ifolder.isOpen();
|
||||
Log.i(folder.name + " open=" + isOpen);
|
||||
if (!isOpen)
|
||||
state.error(new FolderClosedException(ifolder));
|
||||
}
|
||||
} catch (Throwable ex) {
|
||||
Log.w(ex);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// Partition operations by priority
|
||||
boolean offline = (mapFolders.get(folder) == null);
|
||||
List<TupleOperationEx.PartitionKey> keys = new ArrayList<>();
|
||||
|
|
Loading…
Add table
Reference in a new issue