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

Commit 988154b1 authored by Steve Levis's avatar Steve Levis
Browse files

Handle ACTION_SET_ALARM properly when skipUi=true

Bug: 6538708
Change-Id: If0976a61b3c8dad8eb41c6b7c50e027c7ffa6b5e
parent 64a5e3ec
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -114,7 +114,9 @@ public class HandleSetAlarm extends Activity {
                alarm.enabled = true;
            }
            SetAlarm.popAlarmSetToast(this, timeInMillis);
            if (!skipUi) {
            if (skipUi) {
                Alarms.setAlarm(this, alarm);
            } else {
                Intent i = new Intent(this, SetAlarm.class);
                i.putExtra(Alarms.ALARM_INTENT_EXTRA, alarm);
                startActivity(i);