From a2f18e228405bb9b505775639d3aee3bcbf76373 Mon Sep 17 00:00:00 2001 From: ViAnh Date: Mon, 10 Feb 2025 21:11:23 +0700 Subject: [PATCH] [Cmanga] Remove escape chars in description --- .../kotlin/org/koitharu/kotatsu/parsers/site/vi/CMangaParser.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/CMangaParser.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/CMangaParser.kt index 15e6b3bc..ec8c3156 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/CMangaParser.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/CMangaParser.kt @@ -168,7 +168,7 @@ internal class CMangaParser(context: MangaLoaderContext) : }, author = null, largeCoverUrl = null, - description = info.optString("detail"), + description = info.getStringOrNull("detail")?.replace("\\\"", "\""), chapters = emptyList(), source = source, )