FourTOne5 преди 3 години
родител
ревизия
800583b5e2
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      app/src/main/java/eu/kanade/tachiyomi/ui/setting/SettingsLibraryController.kt

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

@@ -242,10 +242,10 @@ class SettingsLibraryController : SettingsController() {
                         .sortedBy { it.order }
 
                     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 {
-                        includedCategories.joinToString { it.name }
+                        if (includedCategories.size == allCategories.size) context.getString(R.string.all)
+                        else includedCategories.joinToString { it.name }
                     }
 
                     val excludedItemsText = if (excludedCategories.isEmpty()) {