Browse Source

Actually Fix #6341 (#6392)

FourTOne5 3 years ago
parent
commit
800583b5e2

+ 3 - 3
app/src/main/java/eu/kanade/tachiyomi/ui/setting/SettingsLibraryController.kt

@@ -242,10 +242,10 @@ class SettingsLibraryController : SettingsController() {
                         .sortedBy { it.order }
                         .sortedBy { it.order }
 
 
                     val includedItemsText = if (includedCategories.isEmpty()) {
                     val includedItemsText = if (includedCategories.isEmpty()) {
-                        if (excludedCategories.size == allCategories.size) context.getString(R.string.none)
-                        else context.getString(R.string.all)
+                        context.getString(R.string.none)
                     } else {
                     } else {
-                        includedCategories.joinToString { it.name }
+                        if (includedCategories.size == allCategories.size) context.getString(R.string.all)
+                        else includedCategories.joinToString { it.name }
                     }
                     }
 
 
                     val excludedItemsText = if (excludedCategories.isEmpty()) {
                     val excludedItemsText = if (excludedCategories.isEmpty()) {