Enabled auto check for exts by default

pull/3117/head
Jay 4 years ago
parent e509ad1913
commit 575c1f0f70

@ -28,6 +28,7 @@ object Migrations {
if (BuildConfig.INCLUDE_UPDATER && preferences.automaticUpdates()) {
UpdaterJob.setupTask()
}
ExtensionUpdateJob.setupTask()
return BuildConfig.DEBUG
}

@ -203,7 +203,7 @@ class PreferencesHelper(val context: Context) {
fun automaticUpdates() = prefs.getBoolean(Keys.automaticUpdates, true)
fun automaticExtUpdates() = rxPrefs.getBoolean(Keys.automaticExtUpdates, false)
fun automaticExtUpdates() = rxPrefs.getBoolean(Keys.automaticExtUpdates, true)
fun collapsedCategories() = rxPrefs.getStringSet("collapsed_categories", mutableSetOf())

Loading…
Cancel
Save