mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 06:08:31 +02:00
Always run watchdog on app start
This commit is contained in:
@@ -128,7 +128,15 @@ public class ApplicationEx extends Application implements SharedPreferences.OnSh
|
||||
|
||||
DisconnectBlacklist.init(this);
|
||||
|
||||
WorkerWatchdog.init(this);
|
||||
boolean watchdog = prefs.getBoolean("watchdog", true);
|
||||
boolean enabled = prefs.getBoolean("enabled", true);
|
||||
if (watchdog && enabled)
|
||||
WorkerWatchdog.init(this);
|
||||
else {
|
||||
ServiceSynchronize.watchdog(this);
|
||||
ServiceSend.watchdog(this);
|
||||
}
|
||||
|
||||
WorkerCleanup.init(this);
|
||||
|
||||
registerReceiver(onScreenOff, new IntentFilter(Intent.ACTION_SCREEN_OFF));
|
||||
|
||||
Reference in New Issue
Block a user