fix(library): Re-introduce force UI update on certain actions

Those actions are not yet handled via flow
This commit is contained in:
Ahmad Ansori Palembani 2024-12-01 08:18:18 +07:00
parent 9276382c12
commit f7450b8d17
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6

View file

@ -1360,6 +1360,7 @@ class LibraryPresenter(
) )
} }
} }
updateLibrary()
} }
} }
@ -1465,6 +1466,7 @@ class LibraryPresenter(
mapMangaChapters[manga] = chapters mapMangaChapters[manga] = chapters
} }
updateLibrary()
} }
return mapMangaChapters return mapMangaChapters
} }
@ -1480,6 +1482,7 @@ class LibraryPresenter(
} }
}.flatten() }.flatten()
updateChapter.awaitAll(updates) updateChapter.awaitAll(updates)
updateLibrary()
} }
} }