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

Commit 2db6ebed authored by Steve Levis's avatar Steve Levis
Browse files

Fix SET_ALARM Intent Handling

- An matching alarm pulled from the ContentProvider needs to have
alarm.enabled=true when sending the object to the SetAlarm activity

Change-Id: Ifb588f732d30fce4952bc80edf5491c8c49c5000
parent ba26bd37
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -111,6 +111,7 @@ public class HandleSetAlarm extends Activity {
            Alarm alarm = new Alarm(c);
            if (enable) {
                Alarms.enableAlarm(this, alarm.id, true);
                alarm.enabled = true;
            }
            SetAlarm.popAlarmSetToast(this, timeInMillis);
            if (!skipUi) {