fix summary parsing

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso 2023-04-23 10:19:36 -04:00
parent de0737f641
commit 49c8d9b606

View File

@ -110,7 +110,7 @@ export const createAndParseSummary = async (
ch.shift();
ch.pop();
return {
title: ch[0].slice(1, -1) as string,
title: ch[0] as string,
summary: ch[1] as string,
} as ChapterListItem;
}) as ChapterListItem[];