
* Update MadaraGenerator.kt * Include fixed version of #10443 and #10167 Co-authored-by: Shota <75117560+Shota5749@users.noreply.github.com> Co-authored-by: Carlos Hernandez <20384738+wolfghost9898@users.noreply.github.com> * Add icons and overrides * Add more icons and overrides * Update Madara.kt Co-authored-by: Shota <75117560+Shota5749@users.noreply.github.com> Co-authored-by: Carlos Hernandez <20384738+wolfghost9898@users.noreply.github.com>
12 lines
393 B
Kotlin
12 lines
393 B
Kotlin
package eu.kanade.tachiyomi.extension.en.cookiekiara
|
|
|
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
import eu.kanade.tachiyomi.source.model.SChapter
|
|
import okhttp3.Response
|
|
|
|
class CookieKiara : Madara("Cookie Kiara", "https://18.kiara.cool", "en") {
|
|
override fun chapterListParse(response: Response): List<SChapter> {
|
|
return super.chapterListParse(response).reversed()
|
|
}
|
|
}
|