diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/vi/Fecomicc.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/vi/Fecomicc.kt index 7b5c4e962..aedcdbce8 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/vi/Fecomicc.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/vi/Fecomicc.kt @@ -7,7 +7,7 @@ import org.koitharu.kotatsu.parsers.site.madara.MadaraParser @MangaSourceParser("FECOMICC", "Fecomicc", "vi") internal class Fecomicc(context: MangaLoaderContext) : - MadaraParser(context, MangaParserSource.FECOMICC, "fecomicc.xyz", 9) { + MadaraParser(context, MangaParserSource.FECOMICC, "fftruyen.net", 9) { override val listUrl = "comic/" override val tagPrefix = "the-loai/" override val datePattern = "dd/MM/yyyy" diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/wpcomics/vi/DocTruyen3Q.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/wpcomics/vi/DocTruyen3Q.kt index acbd914e0..1e45c244f 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/wpcomics/vi/DocTruyen3Q.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/wpcomics/vi/DocTruyen3Q.kt @@ -226,12 +226,12 @@ internal class DocTruyen3Q(context: MangaLoaderContext) : val fullUrl = chapter.url.toAbsoluteUrl(domain) val doc = webClient.httpGet(fullUrl).parseHtml() return doc.select("div.page-chapter img").mapNotNull { img -> - val url = img.src()?.toRelativeUrl(domain) ?: return@mapNotNull null + val url = img.attr("src")?.toAbsoluteUrl(domain) ?: return@mapNotNull null MangaPage( id = generateUid(url), url = url, preview = null, - source = source, + source = source ) } }