|
|
|
@ -263,9 +263,10 @@ object ReadBook { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private fun download(chapter: BookChapter, resetPageOffset: Boolean) { |
|
|
|
|
book?.let { book -> |
|
|
|
|
webBook?.let { |
|
|
|
|
it.getContent(book, chapter) |
|
|
|
|
val book = book |
|
|
|
|
val webBook = webBook |
|
|
|
|
if (book != null && webBook != null) { |
|
|
|
|
webBook.getContent(book, chapter) |
|
|
|
|
.onSuccess(Dispatchers.IO) { content -> |
|
|
|
|
if (content.isEmpty()) { |
|
|
|
|
contentLoadFinish( |
|
|
|
@ -294,7 +295,7 @@ object ReadBook { |
|
|
|
|
) |
|
|
|
|
removeLoading(chapter.index) |
|
|
|
|
} |
|
|
|
|
} ?: let { |
|
|
|
|
} else if (book != null) { |
|
|
|
|
contentLoadFinish( |
|
|
|
|
book, |
|
|
|
|
chapter, |
|
|
|
@ -302,8 +303,9 @@ object ReadBook { |
|
|
|
|
resetPageOffset = resetPageOffset |
|
|
|
|
) |
|
|
|
|
removeLoading(chapter.index) |
|
|
|
|
} else { |
|
|
|
|
removeLoading(chapter.index) |
|
|
|
|
} |
|
|
|
|
} ?: removeLoading(chapter.index) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private fun addLoading(index: Int): Boolean { |
|
|
|
|