Enable app auto update by default

This commit is contained in:
arkon
2020-03-07 13:11:02 -05:00
parent 8b6268966e
commit 5e9496ef36
3 changed files with 10 additions and 3 deletions

View File

@@ -186,7 +186,7 @@ class PreferencesHelper(val context: Context) {
fun librarySortingAscending() = rxPrefs.getBoolean("library_sorting_ascending", true)
fun automaticUpdates() = prefs.getBoolean(Keys.automaticUpdates, false)
fun automaticUpdates() = prefs.getBoolean(Keys.automaticUpdates, true)
fun hiddenCatalogues() = rxPrefs.getStringSet("hidden_catalogues", emptySet())