mirror of https://github.com/M66B/FairEmail.git
Small fix
This commit is contained in:
parent
0e6f764300
commit
c342b8c625
|
@ -2253,7 +2253,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
|||
private static void start(Context context, Intent intent) {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean background_service = prefs.getBoolean("background_service", false);
|
||||
if (background_service)
|
||||
if (background_service && Build.VERSION.SDK_INT < Build.VERSION_CODES.O)
|
||||
context.startService(intent);
|
||||
else
|
||||
ContextCompat.startForegroundService(context, intent);
|
||||
|
|
Loading…
Reference in New Issue