Fix number of items not updating when Show category tabs is off (#7644)

(cherry picked from commit e513487caac5ef8d7e1b5a60db60291ee8ec5cba)
This commit is contained in:
Andreas 2022-07-29 16:17:31 +02:00 committed by Jobobby04
parent 758cf63024
commit e21badf48c

View File

@ -914,7 +914,7 @@ class LibraryPresenter(
val defaultTitle = stringResource(id = R.string.label_library)
val default = remember { LibraryToolbarTitle(defaultTitle) }
return produceState(initialValue = default, category, mangaCountVisibility, tabVisibility) {
return produceState(initialValue = default, category, loadedManga, mangaCountVisibility, tabVisibility) {
val title = if (tabVisibility.not()) category?.name ?: defaultTitle else defaultTitle
value = when {