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

Commit 5544e59d authored by Isaac Katzenelson's avatar Isaac Katzenelson Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE when deleted alarm is null." into klp-dev

parents 5d46ba96 c677dfde
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1768,7 +1768,7 @@ public class AlarmClockFragment extends DeskClockFragment implements

            @Override
            protected void onPostExecute(AlarmInstance instance) {
                if (alarm.enabled && instance != null) {
                if (instance != null) {
                    AlarmUtils.popAlarmSetToast(context, instance.getAlarmTime().getTimeInMillis());
                }
            }