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

Commit 36c8a0d0 authored by Adam He's avatar Adam He
Browse files

Fixed logic on update().

Bug: 127062800
Test: atest android.autofillservice.cts.augmented.AugmentedLoginActivityTest
Change-Id: I99c7d1884b774cb1f5c77692b8c6fd2df083849d
parent 90088bb8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -427,7 +427,7 @@ public abstract class AugmentedAutofillService extends Service {
                mFocusedValue = focusedValue;
                if (mCallback != null) {
                    try {
                        if (mCallback.isCompleted()) {
                        if (!mCallback.isCompleted()) {
                            mCallback.cancel();
                        }
                    } catch (RemoteException e) {