Update the coroutine dependency and fix issues that were causing the crash

This commit is contained in:
Jobobby04 2020-05-23 00:57:41 -04:00
parent f7d991ab54
commit 9d764781c3
2 changed files with 6 additions and 8 deletions

View File

@ -281,7 +281,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
final coroutines_version = '1.3.5'
final coroutines_version = '1.3.7'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-reactive:$coroutines_version"

View File

@ -161,7 +161,7 @@ class MangaAllInOnePresenter(
scope.launch(Dispatchers.IO) {
var manga2: Manga? = null
if (updateInfo) {
manga2 = db.getManga(manga.url, manga.source).executeAsBlocking()!!
manga2 = db.getManga(manga.url, manga.source).executeAsBlocking()
updateChapters()
updateChapterInfo()
}
@ -190,7 +190,7 @@ class MangaAllInOnePresenter(
val networkManga = try {
source.fetchMangaDetails(manga).toBlocking().single()
} catch (e: Exception) {
withContext(Dispatchers.Main) { controller.onFetchMangaError(e) }
controller.onFetchMangaError(e)
return@launch
}
if (networkManga != null) {
@ -205,7 +205,7 @@ class MangaAllInOnePresenter(
try {
chapters = source.fetchChapterList(manga).toBlocking().single()
} catch (e: Exception) {
withContext(Dispatchers.Main) { controller.onFetchMangaError(e) }
controller.onFetchMangaError(e)
return@launch
}
}
@ -220,10 +220,8 @@ class MangaAllInOnePresenter(
updateManga(updateInfo = false)
controller.onFetchMangaDone()
}
} catch (e: java.lang.Exception) {
withContext(Dispatchers.Main) {
controller.onFetchMangaError(e)
}
} catch (e: Exception) {
controller.onFetchMangaError(e)
}
}
}