From 00e7f2ff58e9b8e92ae9aae00a5548528bb2163c Mon Sep 17 00:00:00 2001 From: Melanie Kat <318003+ZicklePop@users.noreply.github.com> Date: Tue, 23 Dec 2025 22:31:37 -0800 Subject: [PATCH] books on new lines --- utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.js b/utils.js index 4535661..b18c6dd 100644 --- a/utils.js +++ b/utils.js @@ -117,5 +117,5 @@ export async function getReadingBooklogr(booklogrUrl, booklogrUser) { const books = data.books.filter( ({ reading_status }) => reading_status === 'Currently reading', ) - return books.map(({ title }) => title).join(', ') + return books.map(({ title }) => title).join(',
') }