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

Commit ffdcaef9 authored by Sam Blitzstein's avatar Sam Blitzstein
Browse files

Fix bug where we weren't firing the correct alarm

Had a bug where we were choosing the wrong alarm to fire.

Bug: 10248289
Bug: 10243530
Change-Id: I56d7efa5c3072db1598835bdf194f2c734af19cd
parent b372391c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -353,7 +353,7 @@ public class Alarms {
            }
        }

        return alarm != null ? Pair.create(alarm, alarmTime) : null;
        return alarm != null ? Pair.create(alarm, minTime) : null;
    }

    /**