K6bd chapter order fix (#19539)

* Reversed sort order so chapters match other extensions, new at top

* restoring gradle files
This commit is contained in:
DeeFourCee-exe 2024-01-05 11:24:59 -06:00 committed by GitHub
parent 47cb163ab4
commit fd0a1f0328
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 = 'Kill Six Billion Demons' extName = 'Kill Six Billion Demons'
pkgNameSuffix = 'en.killsixbilliondemons' pkgNameSuffix = 'en.killsixbilliondemons'
extClass = '.KillSixBillionDemons' extClass = '.KillSixBillionDemons'
extVersionCode = 4 extVersionCode = 5
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

View File

@ -128,7 +128,7 @@ class KillSixBillionDemons : HttpSource() {
fetchChapterListTR( fetchChapterListTR(
baseUrl + manga.url + pagesOrder, baseUrl + manga.url + pagesOrder,
mutableListOf(), mutableListOf(),
), ).reversed(),
) )
} }