mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 03:07:25 +01:00
Fix library download counts not being loaded if downloaded filter is in exclusion state
This commit is contained in:
parent
e49781de7a
commit
e4a2f35907
@ -331,7 +331,7 @@ class LibraryPresenter(
|
|||||||
.map { libraryManga ->
|
.map { libraryManga ->
|
||||||
// Display mode based on user preference: take it from global library setting or category
|
// Display mode based on user preference: take it from global library setting or category
|
||||||
LibraryItem(libraryManga).apply {
|
LibraryItem(libraryManga).apply {
|
||||||
downloadCount = if (downloadBadgePref || filterDownloadedPref == State.INCLUDE.value) {
|
downloadCount = if (downloadBadgePref || filterDownloadedPref != State.IGNORE.value) {
|
||||||
downloadManager.getDownloadCount(libraryManga.manga).toLong()
|
downloadManager.getDownloadCount(libraryManga.manga).toLong()
|
||||||
} else {
|
} else {
|
||||||
0
|
0
|
||||||
|
Loading…
Reference in New Issue
Block a user