[Cmanga] Remove escape chars in description

ViAnh 1 year ago
parent fceb927bce
commit a2f18e2284

@ -168,7 +168,7 @@ internal class CMangaParser(context: MangaLoaderContext) :
}, },
author = null, author = null,
largeCoverUrl = null, largeCoverUrl = null,
description = info.optString("detail"), description = info.getStringOrNull("detail")?.replace("\\\"", "\""),
chapters = emptyList(), chapters = emptyList(),
source = source, source = source,
) )

Loading…
Cancel
Save