Skip to content

Commit

Permalink
Change default update priorization
Browse files Browse the repository at this point in the history
  • Loading branch information
inorichi committed Jun 9, 2019
1 parent 5d8dc24 commit cccb56b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class PreferencesHelper(val context: Context) {

fun libraryUpdateCategories() = rxPrefs.getStringSet(Keys.libraryUpdateCategories, emptySet())

fun libraryUpdatePrioritization() = rxPrefs.getInteger(Keys.libraryUpdatePrioritization, 1)
fun libraryUpdatePrioritization() = rxPrefs.getInteger(Keys.libraryUpdatePrioritization, 0)

fun libraryAsList() = rxPrefs.getBoolean(Keys.libraryAsList, false)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class SettingsGeneralController : SettingsController() {
"0",
"1"
)
defaultValue = "1"
defaultValue = "0"
summaryRes = R.string.pref_library_update_prioritization_summary
}
intListPreference {
Expand Down

0 comments on commit cccb56b

Please sign in to comment.