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

Commit 774ccdeb authored by Kevin Chyn's avatar Kevin Chyn
Browse files

Fix fingerprint onEnumerationResult to use remaining instead of fid

Fixes: 64087535

Test: make -j56, this code isn't used until we figure when to do
b/63606218

Change-Id: I4c8804e71695ffc46e9b70c7f623e14e420f6242
parent 3102245b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ public abstract class EnumerateClient extends ClientMonitor {
        } catch (RemoteException e) {
            Slog.w(TAG, "Failed to notify enumerated:", e);
        }
        return fingerId == 0; // done when id hits 0
        return remaining == 0;
    }

    @Override
+1 −1
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ public abstract class InternalEnumerateClient extends EnumerateClient {
            doFingerprintCleanup();
        }

        return fingerId == 0; // done when id hits 0
        return remaining == 0;
    }

}