Update WidgetConfigureActivity.kt

This commit is contained in:
Tibor Kaputa 2021-09-08 09:53:38 +02:00 committed by GitHub
parent 99abbdabcc
commit e099ba62a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,7 +104,7 @@ class WidgetConfigureActivity : SimpleActivity() {
if (mNotes.size == 1 && note == null) {
note = mNotes.first()
if (note.isBiometricLockUnavailable(this)) {
if (note.shouldBeUnlocked(this)) {
updateCurrentNote(note)
} else {
performSecurityCheck(
@ -129,7 +129,7 @@ class WidgetConfigureActivity : SimpleActivity() {
RadioGroupDialog(this, items, mCurrentNoteId.toInt()) {
val selectedId = it as Int
val note = mNotes.firstOrNull { it.id!!.toInt() == selectedId } ?: return@RadioGroupDialog
if (note.protectionType == PROTECTION_NONE || note.isBiometricLockUnavailable(this)) {
if (note.protectionType == PROTECTION_NONE || note.shouldBeUnlocked(this)) {
updateCurrentNote(note)
} else {
performSecurityCheck(