Tappytoon: reverse chapter order (#9529)
This commit is contained in:
parent
395c7458ba
commit
3e922f4101
|
@ -6,7 +6,7 @@ ext {
|
||||||
extName = 'Tappytoon'
|
extName = 'Tappytoon'
|
||||||
pkgNameSuffix = 'all.tappytoon'
|
pkgNameSuffix = 'all.tappytoon'
|
||||||
extClass = '.TappytoonFactory'
|
extClass = '.TappytoonFactory'
|
||||||
extVersionCode = 1
|
extVersionCode = 2
|
||||||
isNsfw = true
|
isNsfw = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -155,7 +155,7 @@ class Tappytoon(override val lang: String) : HttpSource() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun chapterListParse(response: Response) =
|
override fun chapterListParse(response: Response) =
|
||||||
response.parse<List<Chapter>>().accessible.map {
|
response.parse<List<Chapter>>().accessible.asReversed().map {
|
||||||
SChapter.create().apply {
|
SChapter.create().apply {
|
||||||
name = it.toString()
|
name = it.toString()
|
||||||
url = it.id.toString()
|
url = it.id.toString()
|
||||||
|
|
Loading…
Reference in New Issue