|
@@ -359,7 +359,7 @@ class MangaPresenter(
|
|
|
observeDownloadsStatusSubscription?.let { remove(it) }
|
|
|
observeDownloadsStatusSubscription = downloadManager.queue.getStatusObservable()
|
|
|
.observeOn(Schedulers.io())
|
|
|
- .onBackpressureLatest()
|
|
|
+ .onBackpressureBuffer()
|
|
|
.filter { download -> download.manga.id == manga.id }
|
|
|
.observeOn(AndroidSchedulers.mainThread())
|
|
|
.subscribeLatestCache(
|
|
@@ -375,7 +375,7 @@ class MangaPresenter(
|
|
|
observeDownloadsPageSubscription?.let { remove(it) }
|
|
|
observeDownloadsPageSubscription = downloadManager.queue.getProgressObservable()
|
|
|
.observeOn(Schedulers.io())
|
|
|
- .onBackpressureLatest()
|
|
|
+ .onBackpressureBuffer()
|
|
|
.filter { download -> download.manga.id == manga.id }
|
|
|
.observeOn(AndroidSchedulers.mainThread())
|
|
|
.subscribeLatestCache(MangaController::onChapterDownloadUpdate) { _, error ->
|