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

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

am de0fa318: am 364c8065: am 5eea2455: am 245466b5: am 532737df: Merge "Fix...

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

* commit 'de0fa318':
  Fix calendar reminder notification is not shown in idle state
parents 1a62b4fc de0fa318
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);
        }

        /**