HunlightScans: reverse chapter list (#4504)

This commit is contained in:
AwkwardPeak7 2024-08-09 10:29:30 +05:00 committed by GitHub
parent 50211e2e27
commit 0d22495b7e
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 = '.HunlightScans'
themePkg = 'madara'
baseUrl = 'https://hunlight.com'
overrideVersionCode = 0
overrideVersionCode = 1
isNsfw = true
}

View File

@ -1,6 +1,7 @@
package eu.kanade.tachiyomi.extension.en.hunlightscans
import eu.kanade.tachiyomi.multisrc.madara.Madara
import okhttp3.Response
class HunlightScans : Madara(
"Hunlight Scans",
@ -11,4 +12,6 @@ class HunlightScans : Madara(
override val useNewChapterEndpoint = true
override val filterNonMangaItems = false
override fun chapterListParse(response: Response) = super.chapterListParse(response).reversed()
}