fix: default SearchSources to false

many people thought this was a bug. defaulting off max users more aware of what's going on
This commit is contained in:
rebelonion 2024-04-05 18:54:56 -05:00
parent 2f30bdb6a8
commit 8bde831794

View file

@ -14,7 +14,7 @@ enum class PrefName(val data: Pref) { //TODO: Split this into multiple files
DownloadManager(Pref(Location.General, Int::class, 0)),
NSFWExtension(Pref(Location.General, Boolean::class, true)),
ContinueMedia(Pref(Location.General, Boolean::class, true)),
SearchSources(Pref(Location.General, Boolean::class, true)),
SearchSources(Pref(Location.General, Boolean::class, false)),
RecentlyListOnly(Pref(Location.General, Boolean::class, false)),
SettingsPreferDub(Pref(Location.General, Boolean::class, false)),
SubscriptionCheckingNotifications(Pref(Location.General, Boolean::class, true)),