This commit is contained in:
M66B 2018-08-14 12:27:07 +00:00
parent 0df8aea75d
commit 0ca1050b2e
1 changed files with 3 additions and 0 deletions

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();