Tappytoon: reverse chapter order (#9529)

This commit is contained in:
ObserverOfTime 2021-10-19 15:44:39 +03:00 committed by GitHub
parent 395c7458ba
commit 3e922f4101
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ ext {
extName = 'Tappytoon'
pkgNameSuffix = 'all.tappytoon'
extClass = '.TappytoonFactory'
extVersionCode = 1
extVersionCode = 2
isNsfw = true
}

View File

@ -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()