Fixed manga details crash on error

pull/3117/head
Jay 4 years ago
parent 89ccfe2691
commit c07ed374e8

@ -440,15 +440,14 @@ class MangaDetailsPresenter(
}
isLoading = false
if (chapterError == null) withContext(Dispatchers.Main) { controller.updateChapters(this@MangaDetailsPresenter.chapters) }
else {
if (chapterError != null) {
withContext(Dispatchers.Main) {
controller.showError(
trimException(mangaError!!)
trimException(chapterError!!)
)
}
return@launch
}
if (mangaError != null) withContext(Dispatchers.Main) {
} else if (mangaError != null) withContext(Dispatchers.Main) {
controller.showError(
trimException(mangaError!!)
)

Loading…
Cancel
Save