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

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

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

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

* commit '364c8065':
  Fix calendar reminder notification is not shown in idle state
parents 5ee9088a 364c8065
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);
        }

        /**