1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-19 05:38:31 +00:00

Reschedule protocol disable

This commit is contained in:
M66B 2021-03-25 14:57:32 +01:00
parent 7505ed9125
commit 9e1bbd3697

View file

@ -678,11 +678,15 @@ public class ServiceUI extends IntentService {
static void boot(Context context) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
long banner_hidden = prefs.getLong("banner_hidden", 0);
if (banner_hidden > 0) {
Log.i("Restore banner alarm at " + new Date(banner_hidden));
AlarmManager am = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
am.set(AlarmManager.RTC, banner_hidden, getBannerIntent(context));
}
boolean protocol = prefs.getBoolean("protocol", false);
ServiceUI.scheduleProtocol(context, protocol);
}
}