Prevent crash

pull/156/head
M66B 5 years ago
parent 3819c5dea7
commit 2cbe22c350

@ -151,7 +151,7 @@ public class ServiceSynchronize extends LifecycleService {
@Override
public void onChanged(Integer count) {
Log.i("Synchronizing folders=" + count);
if (count == 0)
if (count == null || count == 0)
cowner.start();
else
cowner.stop();

Loading…
Cancel
Save