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 isLoading = false
if (chapterError == null) withContext(Dispatchers.Main) { controller.updateChapters(this@MangaDetailsPresenter.chapters) } if (chapterError == null) withContext(Dispatchers.Main) { controller.updateChapters(this@MangaDetailsPresenter.chapters) }
else { if (chapterError != null) {
withContext(Dispatchers.Main) { withContext(Dispatchers.Main) {
controller.showError( controller.showError(
trimException(mangaError!!) trimException(chapterError!!)
) )
} }
return@launch return@launch
} } else if (mangaError != null) withContext(Dispatchers.Main) {
if (mangaError != null) withContext(Dispatchers.Main) {
controller.showError( controller.showError(
trimException(mangaError!!) trimException(mangaError!!)
) )

Loading…
Cancel
Save