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