fix language search

This commit is contained in:
tom5079
2025-02-25 00:19:51 -08:00
parent 79a4917897
commit 038b8e0ac5
6 changed files with 4 additions and 4 deletions

View File

@@ -41,7 +41,7 @@ data class SearchArgs(
return when (left) {
"male", "female" -> SearchArgs("tag", query, "all")
"language" -> SearchArgs(null, "index", right)
"language" -> SearchArgs("all", "index", right)
else -> SearchArgs(left, right, "all")
}
}