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

@@ -2,7 +2,7 @@
*Pupil, Hitomi.la viewer for Android* *Pupil, Hitomi.la viewer for Android*
![](https://img.shields.io/github/downloads/tom5079/Pupil/total) ![](https://img.shields.io/github/downloads/tom5079/Pupil/total)
[![](https://img.shields.io/github/downloads/tom5079/Pupil/5.3.16/Pupil-v5.3.16.apk?color=%234fc3f7&label=DOWNLOAD%20APP&style=for-the-badge)](https://github.com/tom5079/Pupil/releases/download/5.3.16/Pupil-v5.3.16.apk) [![](https://img.shields.io/github/downloads/tom5079/Pupil/5.3.17/Pupil-v5.3.17.apk?color=%234fc3f7&label=DOWNLOAD%20APP&style=for-the-badge)](https://github.com/tom5079/Pupil/releases/download/5.3.17/Pupil-v5.3.17.apk)
[![](https://discordapp.com/api/guilds/610452916612104194/embed.png?style=banner2)](https://discord.gg/Stj4b5v) [![](https://discordapp.com/api/guilds/610452916612104194/embed.png?style=banner2)](https://discord.gg/Stj4b5v)
# Features # Features

View File

@@ -19,7 +19,7 @@ android {
minSdk = 21 minSdk = 21
targetSdk = 35 targetSdk = 35
versionCode = 70 versionCode = 70
versionName = "5.3.16" versionName = "5.3.17"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
} }

View File

@@ -12,7 +12,7 @@
"filters": [], "filters": [],
"attributes": [], "attributes": [],
"versionCode": 70, "versionCode": 70,
"versionName": "5.3.16", "versionName": "5.3.17",
"outputFile": "app-release.apk" "outputFile": "app-release.apk"
} }
], ],

View File

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