From fadb06aabbe7629ac25c424a847d7e87f56f0ff8 Mon Sep 17 00:00:00 2001 From: Zakhar Timoshenko Date: Wed, 20 Jul 2022 19:41:49 +0300 Subject: [PATCH] [Remanga] Fix details parsing --- .../kotlin/org/koitharu/kotatsu/parsers/site/RemangaParser.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/RemangaParser.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/RemangaParser.kt index 34c751b13..c181ae78b 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/RemangaParser.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/RemangaParser.kt @@ -116,7 +116,7 @@ internal class RemangaParser( val slug = manga.url.find(regexLastUrlPath) ?: throw ParseException("Cannot obtain slug from ${manga.url}", manga.publicUrl) val data = context.httpGet( - url = "https://api.$domain/api/titles/$slug/", + url = "https://api.$domain/api/titles$slug/", headers = getApiHeaders(), ).handle401().parseJson() val content = try {