diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/uk/HoneyMangaParser.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/uk/HoneyMangaParser.kt index 0184d1867..e43583d4f 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/uk/HoneyMangaParser.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/uk/HoneyMangaParser.kt @@ -157,9 +157,7 @@ class HoneyMangaParser(context: MangaLoaderContext) : PagedMangaParser(context, } override suspend fun getPages(chapter: MangaChapter): List { - val body = JSONObject() - body.put("chapterId", chapter.url) - val content = webClient.httpPost(framesApi, body).parseJson().getJSONObject("resourceIds") + val content = webClient.httpGet("$framesApi/${chapter.url}").parseJson().getJSONObject("resourceIds") val baseUrl = imageStorageUrl.tryGet().getOrDefault(IMAGE_BASEURL_FALLBACK) return List(content.length()) { i -> val item = content.getString(i.toString()) diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/uk/MangaInUaParser.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/uk/MangaInUaParser.kt index 3b1fc2c68..cecb90e6e 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/uk/MangaInUaParser.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/uk/MangaInUaParser.kt @@ -94,7 +94,7 @@ class MangaInUaParser(context: MangaLoaderContext) : PagedMangaParser( "news_id" to linkToComics.attrOrThrow("data-news_id"), "news_category" to linkToComics.attrOrThrow("data-news_category"), "this_link" to "", - "user_hashs" to userHash, + "user_hash" to userHash, ), ).parseHtml() val chapterNodes = chaptersDoc.select(".ltcitems")