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

Commit 02a0d9ee authored by Dave Mankoff's avatar Dave Mankoff Committed by Android (Google) Code Review
Browse files

Merge "Allow single taps when face-authed."

parents 5a4f1eb2 c7f10e96
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -185,8 +185,12 @@ public class BrightLineFalsingManager implements FalsingManager {
            return true;
        }

        // TODO(b/172655679): we always reject single-taps when doing a robust check for now.
        return robustCheck;
        // TODO(b/172655679): More heuristics to come. For now, allow touches through if face-authed
        if (robustCheck) {
            return !mDataProvider.isJustUnlockedWithFace();
        }

        return false;
    }

    @Override