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

Commit 56f41971 authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android (Google) Code Review
Browse files

Merge "Fix issue #24571425: Device does not come out of idle mode for maintenance" into mnc-dr-dev

parents 6a032a3a f383129b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -971,8 +971,8 @@ class AlarmManagerService extends SystemService {
            // This is a special alarm that will put the system into idle until it goes off.
            // The caller has given the time they want this to happen at, however we need
            // to pull that earlier if there are existing alarms that have requested to
            // bring us out of idle.
            if (mNextWakeFromIdle != null) {
            // bring us out of idle at an earlier time.
            if (mNextWakeFromIdle != null && a.whenElapsed > mNextWakeFromIdle.whenElapsed) {
                a.when = a.whenElapsed = a.maxWhenElapsed = mNextWakeFromIdle.whenElapsed;
            }
            // Add fuzz to make the alarm go off some time before the actual desired time.