Fix download status not updated properly after starting batch download (#5348)
(cherry picked from commit 31d96c2bf0a2ae87978bd4c2774eed0cf050e6ec) # Conflicts: # app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaPresenter.kt
This commit is contained in:
parent
eafce1ee5d
commit
8cc51c7f71
@ -690,7 +690,7 @@ class MangaPresenter(
|
||||
observeDownloadsStatusSubscription?.let { remove(it) }
|
||||
observeDownloadsStatusSubscription = downloadManager.queue.getStatusObservable()
|
||||
.observeOn(Schedulers.io())
|
||||
.onBackpressureLatest()
|
||||
.onBackpressureBuffer()
|
||||
.filter { download -> /* SY --> */ if (isMergedSource) download.manga.id in mergedIds else /* SY <-- */ download.manga.id == manga.id }
|
||||
.observeOn(AndroidSchedulers.mainThread())
|
||||
.subscribeLatestCache(
|
||||
@ -706,7 +706,7 @@ class MangaPresenter(
|
||||
observeDownloadsPageSubscription?.let { remove(it) }
|
||||
observeDownloadsPageSubscription = downloadManager.queue.getProgressObservable()
|
||||
.observeOn(Schedulers.io())
|
||||
.onBackpressureLatest()
|
||||
.onBackpressureBuffer()
|
||||
.filter { download -> /* SY --> */ if (isMergedSource) download.manga.id in mergedIds else /* SY <-- */ download.manga.id == manga.id }
|
||||
.observeOn(AndroidSchedulers.mainThread())
|
||||
.subscribeLatestCache(MangaController::onChapterDownloadUpdate) { _, error ->
|
||||
|
@ -48,8 +48,6 @@ class ChapterDownloadView @JvmOverloads constructor(context: Context, attrs: Att
|
||||
state == Download.State.NOT_DOWNLOADED || state == Download.State.QUEUE
|
||||
if (shouldBeVisible) {
|
||||
hideAnimationBehavior = BaseProgressIndicator.HIDE_NONE
|
||||
show()
|
||||
|
||||
if (state == Download.State.NOT_DOWNLOADED || state == Download.State.QUEUE) {
|
||||
trackThickness = 2.dpToPx
|
||||
setIndicatorColor(context.getThemeColor(android.R.attr.textColorHint))
|
||||
@ -72,6 +70,7 @@ class ChapterDownloadView @JvmOverloads constructor(context: Context, attrs: Att
|
||||
setIndicatorColor(context.getThemeColor(android.R.attr.textColorPrimary))
|
||||
setProgressCompat(progress, true)
|
||||
}
|
||||
show()
|
||||
} else {
|
||||
hideAnimationBehavior = BaseProgressIndicator.HIDE_OUTWARD
|
||||
hide()
|
||||
|
@ -41,7 +41,7 @@ class UpdatesPresenter(
|
||||
|
||||
downloadManager.queue.getStatusObservable()
|
||||
.observeOn(Schedulers.io())
|
||||
.onBackpressureLatest()
|
||||
.onBackpressureBuffer()
|
||||
.observeOn(AndroidSchedulers.mainThread())
|
||||
.subscribeLatestCache(
|
||||
{ view, it ->
|
||||
@ -55,7 +55,7 @@ class UpdatesPresenter(
|
||||
|
||||
downloadManager.queue.getProgressObservable()
|
||||
.observeOn(Schedulers.io())
|
||||
.onBackpressureLatest()
|
||||
.onBackpressureBuffer()
|
||||
.observeOn(AndroidSchedulers.mainThread())
|
||||
.subscribeLatestCache(UpdatesController::onChapterDownloadUpdate) { _, error ->
|
||||
Timber.e(error)
|
||||
|
Loading…
x
Reference in New Issue
Block a user