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

Commit e4248f9c authored by Paul Sliwowski's avatar Paul Sliwowski Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE when deleted alarm is null." into ics-ub-clock-amazon

parents 5425e6f8 28c78f7d
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());
                }
            }