mirror of
https://github.com/mihonapp/mihon.git
synced 2025-04-06 15:10:09 +00:00
Fixed return condition
This commit is contained in:
parent
1b4b42c5f8
commit
fecfbc082e
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue