mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-20 04:09:18 +01:00
Fix "not started" filter now showing as applied on app launch
This commit is contained in:
parent
f6f236e1d9
commit
50ca3fa0c7
@ -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…
Reference in New Issue
Block a user