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

Commit 07497559 authored by Christopher Tate's avatar Christopher Tate Committed by Android Git Automerger
Browse files

am f83fa5fe: am f9221a10: am 3bec5090: Merge "Properly recognize repeating...

am f83fa5fe: am f9221a10: am 3bec5090: Merge "Properly recognize repeating wakeup alarms" into lmp-mr1-dev

* commit 'f83fa5fe':
  Properly recognize repeating wakeup alarms
parents 3fbb7900 f83fa5fe
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -1445,12 +1445,9 @@ class AlarmManagerService extends SystemService {
                            maxTriggerTime(nowELAPSED, nextElapsed, alarm.repeatInterval),
                            alarm.repeatInterval, alarm.operation, batch.standalone, true,
                            alarm.workSource, alarm.alarmClock, alarm.userId);
                }

                    // For now we count this as a wakeup alarm, meaning it needs to be
                    // delivered immediately.  In the future we should change this, but
                    // that required delaying when we reschedule the repeat...!
                    hasWakeup = false;
                } else if (alarm.wakeup) {
                if (alarm.wakeup) {
                    hasWakeup = true;
                }