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

Commit bb4c4a88 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

am: e33ff608

Change-Id: I05e68a72367bb69a9dcdda6125ec31cc02e9c173
parents 00da57f9 e33ff608
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;
        }