From 9f87e77ede145e9b43bc3720cfa9e01a249612d8 Mon Sep 17 00:00:00 2001 From: ViAnh Date: Wed, 19 Feb 2025 00:04:50 +0700 Subject: [PATCH] [Cmanga] Fixes --- .../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 30e9b59e..6043ef05 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 @@ -231,7 +231,7 @@ internal class CMangaParser(context: MangaLoaderContext) : val jo = tagList.getJSONObject(key) val name = jo.getString("name") tags[name.lowercase()] = MangaTag( - title = name, + title = name.toTitleCase(), key = name, source = source, )