From da145c7f4179c6e26decbbc48652cb646503d467 Mon Sep 17 00:00:00 2001 From: Draken <131387159+dragonx943@users.noreply.github.com> Date: Wed, 23 Apr 2025 14:13:44 +0700 Subject: [PATCH] [MangaDistrict] Small change --- .../koitharu/kotatsu/parsers/site/madara/en/MangaDistrict.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/en/MangaDistrict.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/en/MangaDistrict.kt index 90fdd8e1..a0a3de1c 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/en/MangaDistrict.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/en/MangaDistrict.kt @@ -21,7 +21,7 @@ internal class MangaDistrict(context: MangaLoaderContext) : override suspend fun getChapters(manga: Manga, doc: Document): List { val slug = manga.url.removeSuffix('/').substringAfterLast('/') val doc2 = webClient.httpPost( - "https://$domain/read-scan/$slug/ajax/chapters/", + "https://$domain/title/$slug/ajax/chapters/", mapOf(), ).parseHtml() val ul = doc2.body().selectFirstOrThrow("ul")