Mangahub fix search issue (#4801)

only shows result one result (first manga) from each site page
This commit is contained in:
Riztard Lanthorn 2020-11-05 23:30:58 +07:00 committed by GitHub
parent 950e2a67eb
commit be5d4d313a
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 = 'Mangahub'
pkgNameSuffix = 'en.mangahub'
extClass = '.Mangahub'
extVersionCode = 6
extVersionCode = 7
libVersion = '1.2'
}

View File

@ -186,7 +186,7 @@ class Mangahub : ParsedHttpSource() {
return GET(url.toString(), headers)
}
override fun searchMangaSelector() = "div#mangalist"
override fun searchMangaSelector() = "div#mangalist div.media-manga.media"
override fun searchMangaFromElement(element: Element): SManga {
return popularMangaFromElement(element)