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

Commit 5b4b0fcc authored by Philip P. Moltmann's avatar Philip P. Moltmann
Browse files

Do not notifyNoFullUi if no view is focused

Change-Id: I8e2257ee8b9c1885d10ea882af491dd07c8e3e21
Fixes: 38235782
Test: CtsAutoFillServiceTestCases
parent a22a5d83
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1120,7 +1120,7 @@ final class Session implements RemoteFillService.FillServiceCallbacks, ViewState

    private void notifyUnavailableToClient() {
        synchronized (mLock) {
            if (!mHasCallback) return;
            if (!mHasCallback || mCurrentViewId == null) return;
            try {
                mClient.notifyNoFillUi(id, mCurrentViewId);
            } catch (RemoteException e) {