fix(download): Apply filtering when fetching chapters for download (#1134)
This commit is contained in:
parent
8f2ab5b87e
commit
89fb6ab753
1 changed files with 2 additions and 2 deletions
|
|
@ -43,9 +43,9 @@ class FilterChaptersForDownload(
|
|||
|
||||
// SY -->
|
||||
val existingChapters = if (manga.source == MERGED_SOURCE_ID) {
|
||||
getMergedChaptersByMangaId.await(manga.id)
|
||||
getMergedChaptersByMangaId.await(manga.id, /* KMK --> */ applyFilter = true /* KMK <-- */)
|
||||
} else {
|
||||
getChaptersByMangaId.await(manga.id)
|
||||
getChaptersByMangaId.await(manga.id, /* KMK --> */ applyFilter = true /* KMK <-- */)
|
||||
}
|
||||
|
||||
val readChapterNumbers = existingChapters
|
||||
|
|
|
|||
Loading…
Reference in a new issue