MangaPresenter: Always fetch chapter from source if current chapter is empty (#7507)

This commit is contained in:
Ivan Iskandar 2022-07-11 01:29:52 +07:00 committed by GitHub
parent 64f60c36e6
commit 634ee86bbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -189,6 +189,8 @@ class MangaPresenter(
if (!manga.initialized) {
fetchAllFromSource(manualFetch = false)
} else if (chapterItems.isEmpty()) {
fetchChaptersFromSource()
}
}
}