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

Commit 1cd62933 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Apply FLAG_IMMUTABLE to KeyChain PendingIntent"

parents a10c1ceb f12ade33
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -535,7 +535,8 @@ public final class KeyChain {
        }
        intent.putExtra(EXTRA_ISSUERS, (Serializable) issuersList);
        // the PendingIntent is used to get calling package name
        intent.putExtra(EXTRA_SENDER, PendingIntent.getActivity(activity, 0, new Intent(), 0));
        intent.putExtra(EXTRA_SENDER, PendingIntent.getActivity(activity, 0, new Intent(),
                PendingIntent.FLAG_IMMUTABLE));
        activity.startActivity(intent);
    }