show correct number of items in the library tit... (#5516)

...le, even when all manga are in a category that isn't the default
category.
This commit is contained in:
jmir1 2021-07-09 16:29:04 +02:00 committed by GitHub
parent e65f59b3df
commit 8d5f798591
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -147,11 +147,8 @@ class LibraryController(
if (preferences.categoryNumberOfItems().get() && libraryMangaRelay.hasValue()) {
libraryMangaRelay.value.mangas.let { mangaMap ->
if (!showCategoryTabs) {
if (!showCategoryTabs || adapter?.categories?.size == 1) {
title += " (${mangaMap[currentCategory?.id]?.size ?: 0})"
} else if (adapter?.categories?.size == 1) {
// Only "Default" category
title += " (${mangaMap[0]?.size ?: 0})"
}
}
}