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

Commit 35fd55ee authored by Adam He's avatar Adam He Committed by android-build-merger
Browse files

Merge "Try augmented autofill if regular autofill is disabled." into qt-dev...

Merge "Try augmented autofill if regular autofill is disabled." into qt-dev am: e33ff608 am: 3d894334
am: a625861b

Change-Id: I257b4e57827dc712af71c89acfdd0346937a7b49
parents f8b54890 a625861b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -569,12 +569,13 @@ final class Session implements RemoteFillService.FillServiceCallbacks, ViewState
    @GuardedBy("mLock")
    private void requestNewFillResponseLocked(@NonNull ViewState viewState, int newState,
            int flags) {
        if (mForAugmentedAutofillOnly) {
        if (mForAugmentedAutofillOnly || mRemoteFillService == null) {
            if (sVerbose) {
                Slog.v(TAG, "requestNewFillResponse(): triggering augmented autofill instead "
                        + "(mForAugmentedAutofillOnly=" + mForAugmentedAutofillOnly
                        + ", flags=" + flags + ")");
            }
            mForAugmentedAutofillOnly = true;
            triggerAugmentedAutofillLocked();
            return;
        }