Disable archive by default

This commit is contained in:
Ensar Sarajčić 2023-07-13 16:38:09 +02:00
parent c1446194a1
commit 4d13fa1079
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ class Config(context: Context) : BaseConfig(context) {
set(keyboardHeight) = prefs.edit().putInt(SOFT_KEYBOARD_HEIGHT, keyboardHeight).apply()
var useArchive: Boolean
get() = prefs.getBoolean(USE_ARCHIVE, true)
get() = prefs.getBoolean(USE_ARCHIVE, false)
set(useArchive) = prefs.edit().putBoolean(USE_ARCHIVE, useArchive).apply()
var lastArchiveCheck: Long