mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 00:15:08 +01:00
parent
f30150c0f0
commit
9792a6cb78
@ -340,13 +340,14 @@ class LibraryPresenter(
|
||||
val libraryMangasFlow = combine(
|
||||
getLibraryManga.subscribe(),
|
||||
libraryPreferences.downloadBadge().changes(),
|
||||
libraryPreferences.filterDownloaded().changes(),
|
||||
downloadCache.changes,
|
||||
) { libraryMangaList, downloadBadgePref, _ ->
|
||||
) { libraryMangaList, downloadBadgePref, filterDownloadedPref, _ ->
|
||||
libraryMangaList
|
||||
.map { libraryManga ->
|
||||
// Display mode based on user preference: take it from global library setting or category
|
||||
LibraryItem(libraryManga).apply {
|
||||
downloadCount = if (downloadBadgePref) {
|
||||
downloadCount = if (downloadBadgePref || filterDownloadedPref == State.INCLUDE.value) {
|
||||
downloadManager.getDownloadCount(libraryManga.manga).toLong()
|
||||
} else {
|
||||
0
|
||||
|
Loading…
Reference in New Issue
Block a user