mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Halt early when not enabled
This commit is contained in:
parent
f8f19ff05e
commit
48603f20b6
2 changed files with 8 additions and 8 deletions
|
@ -61,7 +61,7 @@ public class FragmentOptions extends FragmentEx {
|
|||
@Override
|
||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||
prefs.edit().putBoolean("enabled", checked).apply();
|
||||
ServiceSynchronize.reload(getContext(), "enabled");
|
||||
ServiceSynchronize.start(getContext());
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -179,6 +179,13 @@ public class ServiceSynchronize extends LifecycleService {
|
|||
Log.i(Helper.TAG, "Service command intent=" + intent);
|
||||
super.onStartCommand(intent, flags, startId);
|
||||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
||||
if (!prefs.getBoolean("enabled", true)) {
|
||||
Log.i(Helper.TAG, "Not enabled, halt");
|
||||
stopSelf();
|
||||
return START_STICKY;
|
||||
}
|
||||
|
||||
startForeground(NOTIFICATION_SYNCHRONIZE, getNotificationService(0, 0, 0).build());
|
||||
|
||||
DB db = DB.getInstance(this);
|
||||
|
@ -1937,13 +1944,6 @@ public class ServiceSynchronize extends LifecycleService {
|
|||
private void start() {
|
||||
EntityLog.log(ServiceSynchronize.this, "Main start");
|
||||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(ServiceSynchronize.this);
|
||||
if (!prefs.getBoolean("enabled", true)) {
|
||||
EntityLog.log(ServiceSynchronize.this, "Not enabled, halt");
|
||||
stopSelf();
|
||||
return;
|
||||
}
|
||||
|
||||
state = new ServiceState();
|
||||
state.thread = new Thread(new Runnable() {
|
||||
private List<ServiceState> threadState = new ArrayList<>();
|
||||
|
|
Loading…
Reference in a new issue