AncientComics: Add a reverse list of chapters (#4051)

Add a reverse list of chapters
This commit is contained in:
Chopper 2024-07-17 07:02:34 -03:00 committed by GitHub
parent 86c4779541
commit f2659a8e70
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -3,7 +3,7 @@ ext {
extClass = '.AncientComics'
themePkg = 'mangathemesia'
baseUrl = 'https://ancientcomics.com.br'
overrideVersionCode = 0
overrideVersionCode = 1
}
apply from: "$rootDir/common.gradle"

View File

@ -7,6 +7,7 @@ import eu.kanade.tachiyomi.source.model.FilterList
import okhttp3.HttpUrl.Companion.toHttpUrl
import okhttp3.OkHttpClient
import okhttp3.Request
import okhttp3.Response
import java.text.SimpleDateFormat
import java.util.Locale
@ -31,4 +32,6 @@ class AncientComics : MangaThemesia(
return GET(url, headers)
}
override fun chapterListParse(response: Response) = super.chapterListParse(response).reversed()
}