Move reader preloading to IO scope

Maybe fixes #8440
This commit is contained in:
arkon 2023-02-12 16:14:12 -05:00
parent d522d6d545
commit e052bdef96
2 changed files with 9 additions and 12 deletions

View File

@ -871,7 +871,7 @@ class ReaderActivity : BaseActivity() {
* the viewer is reaching the beginning or end of a chapter or the transition page is active.
*/
fun requestPreloadChapter(chapter: ReaderChapter) {
lifecycleScope.launch { viewModel.preloadChapter(chapter) }
lifecycleScope.launchIO { viewModel.preloadChapter(chapter) }
}
/**

View File

@ -388,20 +388,17 @@ class ReaderViewModel(
return
}
logcat { "Preloading ${chapter.chapter.url}" }
val loader = loader ?: return
withIOContext {
try {
loader.loadChapter(chapter)
} catch (e: Throwable) {
if (e is CancellationException) {
throw e
}
return@withIOContext
try {
logcat { "Preloading ${chapter.chapter.url}" }
loader.loadChapter(chapter)
} catch (e: Throwable) {
if (e is CancellationException) {
throw e
}
eventChannel.trySend(Event.ReloadViewerChapters)
return
}
eventChannel.trySend(Event.ReloadViewerChapters)
}
/**