diff --git a/app/src/main/java/eu/kanade/tachiyomi/ui/setting/SettingsLibraryController.kt b/app/src/main/java/eu/kanade/tachiyomi/ui/setting/SettingsLibraryController.kt index 74366f2a2a..b132f5ba8f 100644 --- a/app/src/main/java/eu/kanade/tachiyomi/ui/setting/SettingsLibraryController.kt +++ b/app/src/main/java/eu/kanade/tachiyomi/ui/setting/SettingsLibraryController.kt @@ -230,9 +230,6 @@ class SettingsLibraryController : SettingsController() { } fun updateSummary() { - val dbCategories = db.getCategories().executeAsBlocking() - val allCategories = listOf(Category.createDefault(activity!!)) + dbCategories - val includedCategories = preferences.libraryUpdateCategories().get() .mapNotNull { id -> categories.find { it.id == id.toInt() } } .sortedBy { it.order } @@ -244,14 +241,14 @@ class SettingsLibraryController : SettingsController() { val includedItemsText = if (includedCategories.isEmpty()) { context.getString(R.string.none) } else { - if (includedCategories.size == allCategories.size) context.getString(R.string.all) + if (includedCategories.size == categories.size) context.getString(R.string.all) else includedCategories.joinToString { it.name } } val excludedItemsText = if (excludedCategories.isEmpty()) { context.getString(R.string.none) } else { - if (excludedCategories.size == allCategories.size) context.getString(R.string.all) + if (excludedCategories.size == categories.size) context.getString(R.string.all) else excludedCategories.joinToString { it.name } }