Fix HTTP error 400 Status Filter (#17283)

* Change value from empty string "" to "0"

* Update build.gradle
This commit is contained in:
iD-666 2023-07-28 02:32:58 +07:00 committed by GitHub
parent ef403d0381
commit 93e5bcf56b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ ext {
extName = 'Comick' extName = 'Comick'
pkgNameSuffix = 'all.comickfun' pkgNameSuffix = 'all.comickfun'
extClass = '.ComickFunFactory' extClass = '.ComickFunFactory'
extVersionCode = 31 extVersionCode = 32
isNsfw = true isNsfw = true
} }

View File

@ -186,7 +186,7 @@ private val getSortsList: Array<Pair<String, String>> = arrayOf(
) )
private val getStatusList: Array<Pair<String, String>> = arrayOf( private val getStatusList: Array<Pair<String, String>> = arrayOf(
Pair("All", ""), Pair("All", "0"),
Pair("Ongoing", "1"), Pair("Ongoing", "1"),
Pair("Completed", "2"), Pair("Completed", "2"),
Pair("Cancelled", "3"), Pair("Cancelled", "3"),