improvement: Change default value of Biometric require confirmation to false #728

This commit is contained in:
Artem Chepurnoy 2024-12-02 10:53:48 +02:00
parent 664c892534
commit 374273743c
No known key found for this signature in database
GPG Key ID: FAC37D0CF674043E

View File

@ -114,7 +114,7 @@ class SettingsRepositoryImpl(
private val biometricTimeoutPref = store.getLong(KEY_BIOMETRIC_TIMEOUT, NONE_DURATION)
private val biometricRequireConfirmationPref = store.getBoolean(KEY_BIOMETRIC_REQUIRE_CONFIRMATION, true)
private val biometricRequireConfirmationPref = store.getBoolean(KEY_BIOMETRIC_REQUIRE_CONFIRMATION, false)
private val clipboardClearDelayPref =
store.getLong(KEY_CLIPBOARD_CLEAR_DELAY, NONE_DURATION)