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

Commit 4ed88660 authored by Isaac Katzenelson's avatar Isaac Katzenelson Committed by Android Git Automerger
Browse files

am 5544e59d: Merge "Fix NPE when deleted alarm is null." into klp-dev

* commit '5544e59d':
  Fix NPE when deleted alarm is null.
parents dda43dd5 5544e59d
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());
                }
            }