Browse Source

To do

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

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

@ -429,6 +429,7 @@ public class ServiceSynchronize extends LifecycleService {
// MessagingException
// - message: connection failure
// - event: Too many simultaneous connections. (Failure)
// TODO: retry?
Log.e(Helper.TAG, folder.name + " " + ex + "\n" + Log.getStackTraceString(ex));
reportError(account.name, folder.name, ex);
@ -1464,6 +1465,8 @@ public class ServiceSynchronize extends LifecycleService {
public void onLost(Network network) {
Log.i(Helper.TAG, "Lost " + network);
// TODO: run in thread
synchronized (state) {
state.running = false;
state.notifyAll();


Loading…
Cancel
Save