You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Unlock button on the lock screen did nothing, leaving anyone whose
fingerprint prompt was dismissed, or who has no fingerprint set up, unable to
get into the app at all. The lock overlay swallows touches so they cannot
reach the page behind it, but it was consuming them in the Initial pointer
pass, which runs parent to child and therefore ate its own button's taps
before the button saw them. It now consumes in the Main pass, which runs
child to parent, so the overlay's controls work and everything else is still
blocked.
A device that cannot authenticate at all, with no biometrics enrolled and no
device credential, now opens instead of showing a lock it could never satisfy.