mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-24 13:48:55 +03:00
Fix crash on updating trackers after reading with no network (closes #4207)
This commit is contained in:
parent
8135136c86
commit
3df98d576e
1 changed files with 6 additions and 2 deletions
|
@ -673,14 +673,18 @@ class ReaderPresenter(
|
|||
// We want these to execute even if the presenter is destroyed and leaks
|
||||
// for a while. The view can still be garbage collected.
|
||||
async {
|
||||
service.update(track)
|
||||
db.insertTrack(track).await()
|
||||
runCatching {
|
||||
service.update(track)
|
||||
db.insertTrack(track).await()
|
||||
}
|
||||
}
|
||||
} else {
|
||||
null
|
||||
}
|
||||
}
|
||||
.awaitAll()
|
||||
.filter { it.isFailure }
|
||||
.forEach { it.exceptionOrNull()?.let { e -> Timber.w(e) } }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue