From 49c8d9b6063256bf0e5cde3380297eac683efa04 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Sun, 23 Apr 2023 10:19:36 -0400 Subject: [PATCH] fix summary parsing Signed-off-by: Xe Iaso --- src/book.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/book.ts b/src/book.ts index 824a9af..5d76749 100644 --- a/src/book.ts +++ b/src/book.ts @@ -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[];