Disable automatic unlock on correct pin

This commit is contained in:
Naveen 2023-09-18 17:19:11 +05:30
parent 7944bc1dbd
commit 3ebd62aa01
No known key found for this signature in database
GPG key ID: 0E155DAD31671DA3

View file

@ -124,9 +124,6 @@ class PinTab(context: Context, attrs: AttributeSet) : BaseSecurityTab(context, a
private fun updatePinCode() {
binding.pinLockCurrentPin.text = "*".repeat(pin.length)
if (computedHash.isNotEmpty() && computedHash == getHashedPin()) {
onCorrectPassword()
}
}
private fun getHashedPin(): String {