Attempt to bypass URL changing at YM. (#13954)

This commit is contained in:
Alessandro Jean 2022-10-22 19:16:00 -03:00 committed by GitHub
parent d5dd9308d1
commit d4b67e2f59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -19,8 +19,6 @@ class ReaperScans : HeanCms(
// Site changed from Madara to HeanCms.
override val versionId = 2
override val fetchAllTitles = true
override val coverPath: String = ""
override fun getGenreList(): List<Genre> = listOf(

View File

@ -8,6 +8,8 @@ class YugenMangas : HeanCms("YugenMangas", "https://yugenmangas.com", "es") {
// Site changed from Madara to HeanCms.
override val versionId = 2
override val coverPath: String = ""
override fun getGenreList(): List<Genre> = listOf(
Genre("+18", 1),
Genre("Acción", 36),

View File

@ -37,7 +37,7 @@ abstract class HeanCms(
protected val intl by lazy { HeanCmsIntl(lang) }
protected open val fetchAllTitles: Boolean = false
protected open val fetchAllTitles: Boolean = true
protected open val coverPath: String = "cover/"

View File

@ -9,7 +9,7 @@ class HeanCmsGenerator : ThemeSourceGenerator {
override val themeClass = "HeanCms"
override val baseVersionCode: Int = 3
override val baseVersionCode: Int = 4
override val sources = listOf(
SingleLang("Reaper Scans", "https://reaperscans.net", "pt-BR", overrideVersionCode = 35),