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

Commit 7f947ff7 authored by Isaac Katzenelson's avatar Isaac Katzenelson Committed by Android Git Automerger
Browse files

am c85619c7: Merge "Make sure TimerReceiver gets intents on time" into klp-dev

* commit 'c85619c7':
  Make sure TimerReceiver gets intents on time
parents 052bf5e2 c85619c7
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1005,6 +1005,8 @@ public class TimerFragment extends DeskClockFragment
        Intent i = new Intent();
        i.setAction(action);
        i.putExtra(Timers.TIMER_INTENT_EXTRA, t.mTimerId);
        // Make sure the receiver is getting the intent ASAP.
        i.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
        getActivity().sendBroadcast(i);
    }