Default to only updating non-completed manga

(cherry picked from commit 0a4163d236a971a2c0a5a1f723b308940c755cc3)
This commit is contained in:
arkon 2021-11-10 09:09:29 -05:00 committed by Jobobby04
parent ab6445d010
commit e4f493503d
2 changed files with 2 additions and 2 deletions

View File

@ -182,7 +182,7 @@ class PreferencesHelper(val context: Context) {
fun jumpToChapters() = prefs.getBoolean(Keys.jumpToChapters, false)
fun updateOnlyNonCompleted() = prefs.getBoolean(Keys.updateOnlyNonCompleted, false)
fun updateOnlyNonCompleted() = prefs.getBoolean(Keys.updateOnlyNonCompleted, true)
fun autoUpdateTrack() = prefs.getBoolean(Keys.autoUpdateTrack, true)

View File

@ -223,7 +223,7 @@ class SettingsLibraryController : SettingsController() {
switchPreference {
key = Keys.updateOnlyNonCompleted
titleRes = R.string.pref_update_only_non_completed
defaultValue = false
defaultValue = true
}
preference {
key = Keys.libraryUpdateCategories