Fix library download counts not being loaded if downloaded filter is in exclusion state
(cherry picked from commit e4a2f35907)
# Conflicts:
# app/src/main/java/eu/kanade/tachiyomi/ui/library/LibraryPresenter.kt
This commit is contained in:
@@ -485,7 +485,7 @@ class LibraryPresenter(
|
||||
.map { libraryManga ->
|
||||
// Display mode based on user preference: take it from global library setting or category
|
||||
LibraryItem(libraryManga).apply {
|
||||
downloadCount = if (downloadBadgePref || filterDownloadedPref == State.INCLUDE.value) {
|
||||
downloadCount = if (downloadBadgePref || filterDownloadedPref != State.IGNORE.value) {
|
||||
// SY -->
|
||||
if (libraryManga.manga.source == MERGED_SOURCE_ID) {
|
||||
runBlocking {
|
||||
|
||||
Reference in New Issue
Block a user