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

Commit 6094beed authored by Fiona Campbell's avatar Fiona Campbell
Browse files

Pass Immutable flag to vr intent

ManagedApplicationService originally used MUTABLE_UNAUDITED for pending intent, change to IMMUTABLE.

Bug: 154917065

Test: build & flash

Change-Id: Idb652edba7dbfe1df11134494d58348fedab64aa
parent 375467b8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -304,7 +304,8 @@ public class ManagedApplicationService {
            }
            if (mSettingsAction != null) {
                intent.putExtra(Intent.EXTRA_CLIENT_INTENT,
                        PendingIntent.getActivity(mContext, 0, new Intent(mSettingsAction), PendingIntent.FLAG_MUTABLE_UNAUDITED));
                        PendingIntent.getActivity(mContext, 0, new Intent(mSettingsAction),
                                PendingIntent.FLAG_IMMUTABLE));
            }

            mConnection = new ServiceConnection() {