Fix search issue #5168 (#5291)

* Fix search issue #5168

* Fix latest manga issue #5219

* Revert "Fix latest manga issue #5219"

This reverts commit cb9e9f93

Co-authored-by: Yanuar Singgih Saputra <yanuar@xqinformatics.com>
This commit is contained in:
Yanuar Singgih 2021-01-02 04:36:34 +07:00 committed by GitHub
parent df39844d0c
commit c813115db8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -67,7 +67,7 @@ class MangaOwl : ParsedHttpSource() {
// Search
override fun searchMangaRequest(page: Int, query: String, filters: FilterList): Request {
return GET("$baseUrl/search/$page?search=$query", headers)
return GET("$baseUrl/search/$page?search=$query&search_field=110&sort=4&completed=2", headers)
}
override fun searchMangaSelector() = popularMangaSelector()