Fixed return condition

This commit is contained in:
Shamicen 2024-02-21 14:04:12 +01:00
parent 1b4b42c5f8
commit fecfbc082e

View file

@ -109,7 +109,8 @@ actual class LocalSource(
override val supportsLatest: Boolean = true
private fun loadMangaForPage(page: Int) {
if (page != loadedPages + 1 || page == currentlyLoadingPage) return
if (page != loadedPages + 1) return
if (page == currentlyLoadingPage) return
currentlyLoadingPage = loadedPages + 1