1
0
mirror of https://github.com/mihonapp/mihon.git synced 2025-05-15 07:26:32 +02:00

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

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

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