fix: manta comix loading chapters in reverse orders (#11643)

This commit is contained in:
Alexander Chernov 2022-04-29 19:46:50 +01:00 committed by GitHub
parent 66c8056b6d
commit af6289c0c7
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 = 'Manta Comics' extName = 'Manta Comics'
pkgNameSuffix = 'en.manta' pkgNameSuffix = 'en.manta'
extClass = '.MantaComics' extClass = '.MantaComics'
extVersionCode = 2 extVersionCode = 3
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

View File

@ -84,7 +84,7 @@ class MantaComics : HttpSource() {
date_upload = it.timestamp date_upload = it.timestamp
chapter_number = it.ord.toFloat() chapter_number = it.ord.toFloat()
} }
} }.reversed()
override fun fetchChapterList(manga: SManga) = override fun fetchChapterList(manga: SManga) =
chapterListRequest(manga).fetch(::chapterListParse) chapterListRequest(manga).fetch(::chapterListParse)