Fix for perpetually loading chapters (#2718)

* Fix for perpetually loading chapters

* Removed page count check
This commit is contained in:
morcefaster 2020-03-16 18:20:35 +02:00 committed by GitHub
parent 124f0e7093
commit cd867f800e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ class ChapterLoader(
* completes if the chapter is already loaded.
*/
fun loadChapter(chapter: ReaderChapter): Completable {
if (chapter.state is ReaderChapter.State.Loaded) {
if (chapterIsReady(chapter)) {
return Completable.complete()
}
@ -61,6 +61,13 @@ class ChapterLoader(
.doOnError { chapter.state = ReaderChapter.State.Error(it) }
}
/**
* Checks [chapter] to be loaded based on present pages and loader in addition to state.
*/
private fun chapterIsReady(chapter: ReaderChapter): Boolean {
return chapter.state is ReaderChapter.State.Loaded && chapter.pageLoader != null
}
/**
* Returns the page loader to use for this [chapter].
*/