Fix to multiple chapter download incorrect state (#9707)
add subscription to download manager queue state flow
This commit is contained in:
parent
8775596a82
commit
0fffde50ff
1 changed files with 2 additions and 1 deletions
|
@ -149,7 +149,8 @@ class MangaInfoScreenModel(
|
||||||
combine(
|
combine(
|
||||||
getMangaAndChapters.subscribe(mangaId).distinctUntilChanged(),
|
getMangaAndChapters.subscribe(mangaId).distinctUntilChanged(),
|
||||||
downloadCache.changes,
|
downloadCache.changes,
|
||||||
) { mangaAndChapters, _ -> mangaAndChapters }
|
downloadManager.queueState,
|
||||||
|
) { mangaAndChapters, _, _ -> mangaAndChapters }
|
||||||
.collectLatest { (manga, chapters) ->
|
.collectLatest { (manga, chapters) ->
|
||||||
updateSuccessState {
|
updateSuccessState {
|
||||||
it.copy(
|
it.copy(
|
||||||
|
|
Reference in a new issue