mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-07 09:33:39 +02:00
Fixes
This commit is contained in:
@@ -739,7 +739,11 @@ public class ServiceSynchronize extends LifecycleService {
|
||||
// Wait for stop or folder error
|
||||
Log.i(Helper.TAG, account.name + " wait");
|
||||
synchronized (state) {
|
||||
state.wait(STORE_NOOP_INTERVAL);
|
||||
try {
|
||||
state.wait(STORE_NOOP_INTERVAL);
|
||||
} catch (InterruptedException ex) {
|
||||
Log.w(Helper.TAG, account.name + " wait " + ex.toString());
|
||||
}
|
||||
}
|
||||
Log.i(Helper.TAG, account.name + " waited");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user