mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
Fix "not started" filter now showing as applied on app launch
This commit is contained in:
parent
f6f236e1d9
commit
50ca3fa0c7
1 changed files with 1 additions and 1 deletions
|
@ -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())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue