Remove sorting from preferred groups list (#10178)

remove sorting
This commit is contained in:
David 2025-08-18 18:57:05 +02:00 committed by Draff
parent 262d246f31
commit a5befc4d52
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'Comick' extName = 'Comick'
extClass = '.ComickFactory' extClass = '.ComickFactory'
extVersionCode = 61 extVersionCode = 62
isNsfw = true isNsfw = true
} }

View File

@ -245,7 +245,6 @@ abstract class Comick(
?.split("\n") ?.split("\n")
?.map(String::trim) ?.map(String::trim)
?.filter(String::isNotEmpty) ?.filter(String::isNotEmpty)
?.sorted()
.orEmpty() .orEmpty()
.toSet() .toSet()