Browse Source

Small improvement

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

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

@ -808,8 +808,10 @@ public class ServiceSynchronize extends LifecycleService {
t.start();
try {
t.join(STORE_CLOSE_TIMEOUT);
if (t.isAlive())
Log.w(Helper.TAG, account.name + " Close timeout");
} catch (InterruptedException ex) {
Log.w(Helper.TAG, account.name + " Close timeout");
Log.w(Helper.TAG, account.name + " close wait " + ex.toString());
t.interrupt();
}
} finally {


Loading…
Cancel
Save