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

Commit 3be0b0a1 authored by Erik's avatar Erik Committed by Android (Google) Code Review
Browse files

Merge "b/2483233 Made each reminder time a unique intent"

parents 37817649 42f19578
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1279,9 +1279,9 @@ public final class Calendar {
            }

            Intent intent = new Intent(EVENT_REMINDER_ACTION);
            intent.setData(ContentUris.withAppendedId(Calendar.CONTENT_URI, alarmTime));
            intent.putExtra(ALARM_TIME, alarmTime);
            PendingIntent pi = PendingIntent.getBroadcast(context, 0, intent,
                    PendingIntent.FLAG_CANCEL_CURRENT);
            PendingIntent pi = PendingIntent.getBroadcast(context, 0, intent, 0);
            manager.set(AlarmManager.RTC_WAKEUP, alarmTime, pi);
        }