Skip to content

Commit

Permalink
Merge "Require a more specific intent" into qt-dev am: 4305c5f
Browse files Browse the repository at this point in the history
Change-Id: I768140bf923b20d721ad9afc66983437597277f2
  • Loading branch information
TreeHugger Robot authored and android-build-merge-worker-robot committed Apr 7, 2020
2 parents 2994fd8 + 4305c5f commit 663079f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,8 @@ public boolean onCreateSliceProvider() {
mZenModeController = new ZenModeControllerImpl(getContext(), mHandler);
mZenModeController.addCallback(this);
mDatePattern = getContext().getString(R.string.system_ui_aod_date_pattern);
mPendingIntent = PendingIntent.getActivity(getContext(), 0, new Intent(), 0);
mPendingIntent = PendingIntent.getActivity(getContext(), 0,
new Intent(getContext(), KeyguardSliceProvider.class), 0);
mMediaWakeLock = new SettableWakeLock(WakeLock.createPartial(getContext(), "media"),
"media");
KeyguardSliceProvider.sInstance = this;
Expand Down

0 comments on commit 663079f

Please sign in to comment.