From 7283cde5ff63749ea3d3f5ae47a7d405d3abd4a2 Mon Sep 17 00:00:00 2001 From: devi Date: Wed, 9 Aug 2023 21:01:43 +0200 Subject: [PATCH] add missing contenttype --- .../org/koitharu/kotatsu/parsers/site/vmp/es/VerComicsPorno.kt | 3 ++- .../org/koitharu/kotatsu/parsers/site/vmp/es/VerMangasPorno.kt | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vmp/es/VerComicsPorno.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vmp/es/VerComicsPorno.kt index c8cf368c3..5d44a9f05 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vmp/es/VerComicsPorno.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vmp/es/VerComicsPorno.kt @@ -2,11 +2,12 @@ package org.koitharu.kotatsu.parsers.site.vmp.es import org.koitharu.kotatsu.parsers.MangaLoaderContext import org.koitharu.kotatsu.parsers.MangaSourceParser +import org.koitharu.kotatsu.parsers.model.ContentType import org.koitharu.kotatsu.parsers.model.MangaSource import org.koitharu.kotatsu.parsers.site.vmp.VmpParser // Other domain name : toonx.net -@MangaSourceParser("VERCOMICSPORNO", "VerComicsPorno", "es") +@MangaSourceParser("VERCOMICSPORNO", "VerComicsPorno", "es", ContentType.HENTAI) internal class VerComicsPorno(context: MangaLoaderContext) : VmpParser(context, MangaSource.VERCOMICSPORNO, "vercomicsporno.com") { override val listUrl = "comics-porno/" diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vmp/es/VerMangasPorno.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vmp/es/VerMangasPorno.kt index 2ee37135b..09dec9095 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vmp/es/VerMangasPorno.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vmp/es/VerMangasPorno.kt @@ -2,9 +2,10 @@ package org.koitharu.kotatsu.parsers.site.vmp.es import org.koitharu.kotatsu.parsers.MangaLoaderContext import org.koitharu.kotatsu.parsers.MangaSourceParser +import org.koitharu.kotatsu.parsers.model.ContentType import org.koitharu.kotatsu.parsers.model.MangaSource import org.koitharu.kotatsu.parsers.site.vmp.VmpParser -@MangaSourceParser("VERMANGASPORNO", "VerMangasPorno", "es") +@MangaSourceParser("VERMANGASPORNO", "VerMangasPorno", "es", ContentType.HENTAI) internal class VerMangasPorno(context: MangaLoaderContext) : VmpParser(context, MangaSource.VERMANGASPORNO, "vermangasporno.com")