mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-13 01:25:07 +01:00
Fixed manga details crash on error
This commit is contained in:
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…
Reference in New Issue
Block a user