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

Commit 9aee1f85 authored by Nicholas Sauer's avatar Nicholas Sauer Committed by Automerger Merge Worker
Browse files

Merge "Create the PendingIntent for UserHandle.CURRENT" into rvc-dev am: e1ac825e am: 253f534c

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11937070

Change-Id: I8ab2b2f1f9bddfc9253321689f28671179ec052b
parents 0dce55ec 253f534c
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -33,6 +33,7 @@ import android.graphics.drawable.Drawable;
import android.metrics.LogMaker;
import android.os.Handler;
import android.os.IBinder;
import android.os.UserHandle;
import android.service.autofill.BatchUpdates;
import android.service.autofill.CustomDescription;
import android.service.autofill.InternalOnClickAction;
@@ -196,7 +197,9 @@ final class SaveUi {
                }
                intent.putExtra(AutofillManager.EXTRA_RESTORE_CROSS_ACTIVITY, true);

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