mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 19:35:09 +01:00
Add error handling to migrations
This commit is contained in:
parent
a75457ad88
commit
08f6317beb
@ -85,7 +85,9 @@ class MigrationPresenter(
|
||||
state = state.copy(isReplacingManga = true)
|
||||
|
||||
Observable.defer { source.fetchChapterList(manga) }
|
||||
.onErrorReturn { emptyList() }
|
||||
.doOnNext { migrateMangaInternal(source, it, prevManga, manga, replace) }
|
||||
.onErrorReturn { emptyList() }
|
||||
.subscribeOn(Schedulers.io())
|
||||
.observeOn(AndroidSchedulers.mainThread())
|
||||
.doOnUnsubscribe { state = state.copy(isReplacingManga = false) }
|
||||
@ -98,7 +100,11 @@ class MigrationPresenter(
|
||||
db.inTransaction {
|
||||
// Update chapters read
|
||||
if (preferences.migrateChapters().getOrDefault()) {
|
||||
try {
|
||||
syncChaptersWithSource(db, sourceChapters, manga, source)
|
||||
} catch (e: Exception) {
|
||||
// Worst case, chapters won't be synced
|
||||
}
|
||||
|
||||
val prevMangaChapters = db.getChapters(prevManga).executeAsBlocking()
|
||||
val maxChapterRead = prevMangaChapters.filter { it.read }
|
||||
|
Loading…
Reference in New Issue
Block a user