[Cmanga] Remove escape chars in description

master
ViAnh 1 year ago
parent fceb927bce
commit a2f18e2284

@ -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,
)

Loading…
Cancel
Save