Do proper check for next chapter's download status when downloading ahead
Fixes #10151 (I think?)
This commit is contained in:
parent
4b8fa059d5
commit
5854ad97e0
@ -462,7 +462,8 @@ class ReaderViewModel @JvmOverloads constructor(
|
|||||||
manga.title,
|
manga.title,
|
||||||
manga.source,
|
manga.source,
|
||||||
)
|
)
|
||||||
if (isNextChapterDownloaded) return@launchIO
|
if (!isNextChapterDownloaded) return@launchIO
|
||||||
|
|
||||||
val chaptersToDownload = getNextChapters.await(manga.id, nextChapter.id!!).run {
|
val chaptersToDownload = getNextChapters.await(manga.id, nextChapter.id!!).run {
|
||||||
if (readerPreferences.skipDupe().get()) {
|
if (readerPreferences.skipDupe().get()) {
|
||||||
removeDuplicates(nextChapter.toDomainChapter()!!)
|
removeDuplicates(nextChapter.toDomainChapter()!!)
|
||||||
|
Loading…
Reference in New Issue
Block a user