diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/MangaDexParser.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/MangaDexParser.kt index db06ace9..b436111b 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/MangaDexParser.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/MangaDexParser.kt @@ -139,7 +139,7 @@ internal class MangaDexParser(override val context: MangaLoaderContext) : MangaP Locale.ROOT, ) manga.copy( - description = mangaAttrs.getJSONObject("description").selectByLocale() + description = mangaAttrs.optJSONObject("description")?.selectByLocale() ?: manga.description, chapters = feed.mapChapters { _, jo -> val id = jo.getString("id")