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

Commit 32338521 authored by Azhara Assanova's avatar Azhara Assanova Committed by Android (Google) Code Review
Browse files

Merge "Add a no-op flag to a mutable implicit PendingIntent"

parents 882f1a73 a01692d1
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -199,8 +199,10 @@ final class SaveUi {
                intent.putExtra(AutofillManager.EXTRA_RESTORE_CROSS_ACTIVITY, true);

                PendingIntent p = PendingIntent.getActivityAsUser(this, /* requestCode= */ 0,
                        intent, PendingIntent.FLAG_MUTABLE, /* options= */ null,
                        UserHandle.CURRENT);
                        intent,
                        PendingIntent.FLAG_MUTABLE
                                | PendingIntent.FLAG_ALLOW_UNSAFE_IMPLICIT_INTENT,
                        /* options= */ null, UserHandle.CURRENT);
                if (sDebug) {
                    Slog.d(TAG, "startActivity add save UI restored with intent=" + intent);
                }