Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5eea2455 authored by Tony Mak's avatar Tony Mak Committed by Android Git Automerger
Browse files

am 245466b5: am 532737df: Merge "Fix calendar reminder notification is not...

am 245466b5: am 532737df: Merge "Fix calendar reminder notification is not shown in idle state" into mnc-dev

* commit '245466b5':
  Fix calendar reminder notification is not shown in idle state
parents aa476de5 245466b5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2393,7 +2393,7 @@ public final class CalendarContract {
            intent.setData(ContentUris.withAppendedId(CalendarContract.CONTENT_URI, alarmTime));
            intent.putExtra(ALARM_TIME, alarmTime);
            PendingIntent pi = PendingIntent.getBroadcast(context, 0, intent, 0);
            manager.setExact(AlarmManager.RTC_WAKEUP, alarmTime, pi);
            manager.setExactAndAllowWhileIdle(AlarmManager.RTC_WAKEUP, alarmTime, pi);
        }

        /**