Reschedule protocol disable

This commit is contained in:
M66B 2021-03-25 14:57:32 +01:00
parent 7505ed9125
commit 9e1bbd3697
1 changed files with 4 additions and 0 deletions

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);
}
}