Fix chapter sort order (#8379)

This commit is contained in:
tangkt89 2021-08-03 22:12:47 +08:00 committed by GitHub
parent 23a64412ed
commit 958cc4457c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Jinmantiantang' extName = 'Jinmantiantang'
pkgNameSuffix = 'zh.jinmantiantang' pkgNameSuffix = 'zh.jinmantiantang'
extClass = '.Jinmantiantang' extClass = '.Jinmantiantang'
extVersionCode = 14 extVersionCode = 15
libVersion = '1.2' libVersion = '1.2'
containsNsfw = true containsNsfw = true
} }

View File

@ -305,7 +305,7 @@ class Jinmantiantang : ConfigurableSource, ParsedHttpSource() {
} }
return listOf(singleChapter) return listOf(singleChapter)
} }
return document.select(chapterListSelector()).map { chapterFromElement(it) } return document.select(chapterListSelector()).map { chapterFromElement(it) }.reversed()
} }
// 漫画图片信息 // 漫画图片信息