Fix "not started" filter now showing as applied on app launch

This commit is contained in:
Jays2Kings 2021-05-08 13:48:55 -04:00
parent f6f236e1d9
commit 50ca3fa0c7

View File

@ -319,7 +319,7 @@ class FilterBottomSheet @JvmOverloads constructor(context: Context, attrs: Attri
val unreadP = preferences.filterUnread().getOrDefault()
if (unreadP <= 2) {
unread.state = unreadP - 1
} else if (unreadP > 3) {
} else if (unreadP >= 3) {
unreadProgress.state = unreadP - 3
}
tracked?.setState(preferences.filterTracked())