Make default for collapseGroupedHistory as true

was always supposed to be true, just missed that
This commit is contained in:
Jays2Kings 2023-03-29 15:37:15 -04:00
parent d82eb8ec6f
commit 5ef323f973

View file

@ -380,7 +380,7 @@ class PreferencesHelper(val context: Context) {
fun groupChaptersHistory() = flowPrefs.getEnum("group_chapters_history_type", RecentsPresenter.GroupType.ByWeek)
fun collapseGroupedHistory() = flowPrefs.getBoolean("collapse_group_history", false)
fun collapseGroupedHistory() = flowPrefs.getBoolean("collapse_group_history", true)
fun showTitleFirstInRecents() = flowPrefs.getBoolean(Keys.showTitleFirstInRecents, false)