mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-05 03:01:05 +02:00
Update WidgetConfigureActivity.kt
This commit is contained in:
parent
99abbdabcc
commit
e099ba62a6
@ -104,7 +104,7 @@ class WidgetConfigureActivity : SimpleActivity() {
|
|||||||
|
|
||||||
if (mNotes.size == 1 && note == null) {
|
if (mNotes.size == 1 && note == null) {
|
||||||
note = mNotes.first()
|
note = mNotes.first()
|
||||||
if (note.isBiometricLockUnavailable(this)) {
|
if (note.shouldBeUnlocked(this)) {
|
||||||
updateCurrentNote(note)
|
updateCurrentNote(note)
|
||||||
} else {
|
} else {
|
||||||
performSecurityCheck(
|
performSecurityCheck(
|
||||||
@ -129,7 +129,7 @@ class WidgetConfigureActivity : SimpleActivity() {
|
|||||||
RadioGroupDialog(this, items, mCurrentNoteId.toInt()) {
|
RadioGroupDialog(this, items, mCurrentNoteId.toInt()) {
|
||||||
val selectedId = it as Int
|
val selectedId = it as Int
|
||||||
val note = mNotes.firstOrNull { it.id!!.toInt() == selectedId } ?: return@RadioGroupDialog
|
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)
|
updateCurrentNote(note)
|
||||||
} else {
|
} else {
|
||||||
performSecurityCheck(
|
performSecurityCheck(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user