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

Commit bbe9d9a4 authored by Kevin Chyn's avatar Kevin Chyn Committed by android-build-merger
Browse files

Merge "Fix fingerprint onEnumerationResult to use remaining instead of fid" into oc-mr1-dev

am: ea783a09

Change-Id: I5748eadc6b2ce46a5c525db76ae9b449ae4dafa8
parents f93765fc ea783a09
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;
    }

}