forked from hardcoresushi/DroidFS
Prompt for password if fingerprint authentification fails
This commit is contained in:
parent
2697eaf11b
commit
91de54018d
@ -426,7 +426,11 @@ class MainActivity : BaseActivity() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
override fun onPasswordHashSaved() {}
|
override fun onPasswordHashSaved() {}
|
||||||
override fun onFailed(pending: Boolean) {}
|
override fun onFailed(pending: Boolean) {
|
||||||
|
if (!pending) {
|
||||||
|
askForPassword(volume, position)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
fingerprintProtector.loadPasswordHash(volume.shortName, encryptedHash, iv)
|
fingerprintProtector.loadPasswordHash(volume.shortName, encryptedHash, iv)
|
||||||
}
|
}
|
||||||
@ -450,7 +454,7 @@ class MainActivity : BaseActivity() {
|
|||||||
|
|
||||||
private fun askForPassword(volume: Volume, position: Int) {
|
private fun askForPassword(volume: Volume, position: Int) {
|
||||||
val dialogBinding = DialogOpenVolumeBinding.inflate(layoutInflater)
|
val dialogBinding = DialogOpenVolumeBinding.inflate(layoutInflater)
|
||||||
if (!usfFingerprint || fingerprintProtector == null) {
|
if (!usfFingerprint || fingerprintProtector == null || volume.encryptedHash != null) {
|
||||||
dialogBinding.checkboxSavePassword.visibility = View.GONE
|
dialogBinding.checkboxSavePassword.visibility = View.GONE
|
||||||
}
|
}
|
||||||
val dialog = CustomAlertDialogBuilder(this, themeValue)
|
val dialog = CustomAlertDialogBuilder(this, themeValue)
|
||||||
|
Loading…
Reference in New Issue
Block a user