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

(cherry picked from commit 634ee86bbd022612d6fe69baf522b4a2223b506f)
This commit is contained in:
Ivan Iskandar 2022-07-11 01:29:52 +07:00 committed by Jobobby04
parent 26632905b5
commit e63c982fe3

View File

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