Fix readcomiconline paging and adjust to pull HQ images (#180)

* fix paging issue

* adjusted to get highquality images
This commit is contained in:
Carlos 2018-02-04 12:22:23 -05:00 committed by inorichi
parent b8283aecba
commit 1c64472027
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ class Readcomiconline : ParsedHttpSource() {
return popularMangaFromElement(element) return popularMangaFromElement(element)
} }
override fun popularMangaNextPageSelector() = "li > a:contains( Next)" override fun popularMangaNextPageSelector() = "li > a:contains(Next)"
override fun latestUpdatesNextPageSelector(): String = "ul.pager > li > a:contains(Next)" override fun latestUpdatesNextPageSelector(): String = "ul.pager > li > a:contains(Next)"
@ -110,7 +110,7 @@ class Readcomiconline : ParsedHttpSource() {
return chapter return chapter
} }
override fun pageListRequest(chapter: SChapter) = POST(baseUrl + chapter.url, headers) override fun pageListRequest(chapter: SChapter) = POST(baseUrl + chapter.url+"&quality=hq", headers)
override fun pageListParse(response: Response): List<Page> { override fun pageListParse(response: Response): List<Page> {
val pages = mutableListOf<Page>() val pages = mutableListOf<Page>()