diff options
| author | 2020-06-02 04:52:53 +0000 | |
|---|---|---|
| committer | 2020-06-02 04:52:53 +0000 | |
| commit | 7b8b45e225094d79b84e68f1ebf93a5180db6163 (patch) | |
| tree | 30349b4aa499068ea44db50d6bfe876be95c5286 | |
| parent | d827b988b1548ede4801945ab6b638bca38fd389 (diff) | |
| parent | 7974d15859f421a73058326f311a95b4116b4e7f (diff) | |
Merge "Make implicit intent immutable." into qt-dev am: 7974d15859
Original change: undetermined
Change-Id: Ib354b4ae9eb8dfdabab1bfa28c19de22683676de
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/InstantAppNotifier.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/InstantAppNotifier.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/InstantAppNotifier.java index 3886f6264b16..ffe51ca44c4f 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/InstantAppNotifier.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/InstantAppNotifier.java @@ -282,7 +282,7 @@ public class InstantAppNotifier extends SystemUI mContext, 0, new Intent(Intent.ACTION_VIEW).setData(Uri.parse(helpUrl)), - 0, + PendingIntent.FLAG_IMMUTABLE, null, user) : null; |