Fix chapter sort order (#8379)
This commit is contained in:
parent
23a64412ed
commit
958cc4457c
|
@ -5,7 +5,7 @@ ext {
|
|||
extName = 'Jinmantiantang'
|
||||
pkgNameSuffix = 'zh.jinmantiantang'
|
||||
extClass = '.Jinmantiantang'
|
||||
extVersionCode = 14
|
||||
extVersionCode = 15
|
||||
libVersion = '1.2'
|
||||
containsNsfw = true
|
||||
}
|
||||
|
|
|
@ -305,7 +305,7 @@ class Jinmantiantang : ConfigurableSource, ParsedHttpSource() {
|
|||
}
|
||||
return listOf(singleChapter)
|
||||
}
|
||||
return document.select(chapterListSelector()).map { chapterFromElement(it) }
|
||||
return document.select(chapterListSelector()).map { chapterFromElement(it) }.reversed()
|
||||
}
|
||||
|
||||
// 漫画图片信息
|
||||
|
|
Loading…
Reference in New Issue