fix search malfunctioning (#8307)

* Update MangaOwl.kt

* Update build.gradle

* Update MangaOwl.kt
This commit is contained in:
CVIUS 2021-07-30 00:19:58 +08:00 committed by GitHub
parent 43528e398b
commit 959f64ff8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'MangaOwl' extName = 'MangaOwl'
pkgNameSuffix = 'en.mangaowl' pkgNameSuffix = 'en.mangaowl'
extClass = '.MangaOwl' extClass = '.MangaOwl'
extVersionCode = 17 extVersionCode = 18
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -178,10 +178,10 @@ class MangaOwl : ParsedHttpSource() {
private class SearchFilter : UriPartFilter( private class SearchFilter : UriPartFilter(
"Search in", "Search in",
arrayOf( arrayOf(
Pair("All", "123"),
Pair("Manga title", "1"), Pair("Manga title", "1"),
Pair("Authors", "2"), Pair("Authors", "2"),
Pair("Description", "3") Pair("Description", "3"),
Pair("All", "123")
) )
) )