From 35fd5042a7a6c5bba492d5dd163feaa2cc3f2de1 Mon Sep 17 00:00:00 2001 From: Draken <131387159+dragonx943@users.noreply.github.com> Date: Wed, 13 Aug 2025 02:46:23 +0700 Subject: [PATCH] =?UTF-8?q?L=C3=A0ng=20Geek:=20Fix=20CSS=20selector=20for?= =?UTF-8?q?=20getPages,=20attempt=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../org/koitharu/kotatsu/parsers/site/vi/LangGeekParser.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/LangGeekParser.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/LangGeekParser.kt index e77b7cbc..407ffa07 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/LangGeekParser.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/LangGeekParser.kt @@ -196,8 +196,8 @@ internal class LangGeekParser(context: MangaLoaderContext): override suspend fun getPages(chapter: MangaChapter): List { val doc = webClient.httpGet(chapter.url.toAbsoluteUrl(domain)).parseHtml() - return doc.select("div.list-images img.lazy").mapNotNull { img -> - val url = img.attr("src") + return doc.select("img.lazy").mapNotNull { img -> + val url = img.requireSrc() MangaPage( id = generateUid(url), url = url,