Skip to content

Commit

Permalink
Changed default for read-filter to reduce confusion for new users
Browse files Browse the repository at this point in the history
  • Loading branch information
spacecowboy committed Nov 17, 2024
1 parent aeb9b8e commit de1c7dd
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,7 @@ class SettingsStore(override val di: DI) : DIAware {
PrefsFeedListFilter(
saved = sp.getBoolean(PREFS_FILTER_SAVED, false),
recentlyRead = sp.getBoolean(PREFS_FILTER_RECENTLY_READ, true),
read =
sp.getBoolean(
PREFS_FILTER_READ,
// Migration
!sp.getBoolean("pref_show_only_unread", true),
),
read = sp.getBoolean(PREFS_FILTER_READ, true),
),
)
val feedListFilter: StateFlow<FeedListFilter> = _feedListFilter.asStateFlow()
Expand Down

0 comments on commit de1c7dd

Please sign in to comment.