Default to only updating non-completed manga

This commit is contained in:
arkon
2021-11-10 09:09:29 -05:00
parent 78de11a9e3
commit 0a4163d236
2 changed files with 2 additions and 2 deletions

View File

@@ -178,7 +178,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)