Manhwalist.org: Update domain (#2072)
parent
8bee71342b
commit
8964bb1584
@ -1,21 +1,25 @@
|
||||
package org.koitharu.kotatsu.parsers.site.mangareader.id
|
||||
|
||||
import org.koitharu.kotatsu.parsers.Broken
|
||||
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
||||
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
||||
import org.koitharu.kotatsu.parsers.model.MangaListFilterCapabilities
|
||||
import org.koitharu.kotatsu.parsers.model.MangaParserSource
|
||||
import org.koitharu.kotatsu.parsers.site.mangareader.MangaReaderParser
|
||||
import java.util.*
|
||||
import java.util.Locale
|
||||
|
||||
@Broken
|
||||
@MangaSourceParser("MANHWALIST_ORG", "ManhwaList.org", "id")
|
||||
internal class ManhwaListOrg(context: MangaLoaderContext) :
|
||||
MangaReaderParser(context, MangaParserSource.MANHWALIST_ORG, "manhwalist.org", pageSize = 20, searchPageSize = 10) {
|
||||
MangaReaderParser(
|
||||
context,
|
||||
MangaParserSource.MANHWALIST_ORG,
|
||||
"isekaikomik.com",
|
||||
pageSize = 30,
|
||||
searchPageSize = 10,
|
||||
) {
|
||||
override val sourceLocale: Locale = Locale.ENGLISH
|
||||
override val listUrl = "/manhwa"
|
||||
override val listUrl = "/manga"
|
||||
override val filterCapabilities: MangaListFilterCapabilities
|
||||
get() = super.filterCapabilities.copy(
|
||||
isTagsExclusionSupported = false,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue