Fixed race condition

This commit is contained in:
M66B 2018-09-30 13:49:01 +00:00
parent 4d5d202ed7
commit e41cc0cccf
1 changed files with 2 additions and 2 deletions

View File

@ -214,7 +214,7 @@ public class ServiceSynchronize extends LifecycleService {
ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
cm.unregisterNetworkCallback(serviceManager);
serviceManager.stop();
serviceManager.onLost(null);
stopForeground(true);
@ -1864,7 +1864,7 @@ public class ServiceSynchronize extends LifecycleService {
if (running) {
ConnectivityManager cm = getSystemService(ConnectivityManager.class);
NetworkInfo ani = cm.getActiveNetworkInfo();
NetworkInfo ani = (network == null ? null : cm.getActiveNetworkInfo());
EntityLog.log(ServiceSynchronize.this, "Network active=" + (ani == null ? null : ani.toString()));
if (ani == null || !ani.isConnected()) {
EntityLog.log(ServiceSynchronize.this, "Network disconnected=" + ani);