mirror of
https://github.com/rebelonion/Dantotsu.git
synced 2026-01-19 14:03:56 +00:00
fix: tag sort
This commit is contained in:
@@ -670,8 +670,8 @@ class AnilistQueries {
|
||||
PrefManager.getVal<Set<String>>(PrefName.TagsListNonAdult).toMutableList()
|
||||
var tags = if (adultTags.isEmpty() || nonAdultTags.isEmpty()) null else
|
||||
mapOf(
|
||||
true to adultTags,
|
||||
false to nonAdultTags
|
||||
true to adultTags.sortedBy { it },
|
||||
false to nonAdultTags.sortedBy { it }
|
||||
)
|
||||
|
||||
if (genres.isNullOrEmpty()) {
|
||||
|
||||
Reference in New Issue
Block a user