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

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

am: 3d894334

Change-Id: I7368ec6679fb170529274a4b63e8ae6ca9d3706f
parents a7813acb 3d894334
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;
        }