Show global update error notifications by default

(cherry picked from commit ec5e6958ef4f12f6cdf6694a37637770ca1e67da)
This commit is contained in:
arkon 2021-06-06 22:27:53 -04:00 committed by Jobobby04
parent c301def4bc
commit 65afc99ead
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ class PreferencesHelper(val context: Context) {
fun autoUpdateTrackers() = prefs.getBoolean(Keys.autoUpdateTrackers, false) fun autoUpdateTrackers() = prefs.getBoolean(Keys.autoUpdateTrackers, false)
fun showLibraryUpdateErrors() = prefs.getBoolean(Keys.showLibraryUpdateErrors, false) fun showLibraryUpdateErrors() = prefs.getBoolean(Keys.showLibraryUpdateErrors, true)
fun themeMode() = flowPrefs.getEnum(Keys.themeMode, Values.ThemeMode.system) fun themeMode() = flowPrefs.getEnum(Keys.themeMode, Values.ThemeMode.system)

View File

@ -327,7 +327,7 @@ class SettingsLibraryController : SettingsController() {
switchPreference { switchPreference {
key = Keys.showLibraryUpdateErrors key = Keys.showLibraryUpdateErrors
titleRes = R.string.pref_library_update_error_notification titleRes = R.string.pref_library_update_error_notification
defaultValue = false defaultValue = true
} }
} }