fix search malfunctioning (#8307)
* Update MangaOwl.kt * Update build.gradle * Update MangaOwl.kt
This commit is contained in:
parent
43528e398b
commit
959f64ff8c
|
@ -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'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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")
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue