From 443aaa41ed3876a87a15e8528d04db6394ef00e8 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 20 Sep 2023 10:01:15 -0700 Subject: [PATCH] chore: fix feed output --- src/_data/books.js | 2 +- src/_data/follow.js | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/_data/books.js b/src/_data/books.js index 24a1a2f0..aec0da5a 100644 --- a/src/_data/books.js +++ b/src/_data/books.js @@ -23,7 +23,7 @@ module.exports = async function () { title: book['title'], url: book['link'], isbn: book['isbn'], - description: book['content'], + description: book['book_description'], dateAdded: book['user_date_added'], type: 'book', }) diff --git a/src/_data/follow.js b/src/_data/follow.js index d95fe327..15967632 100644 --- a/src/_data/follow.js +++ b/src/_data/follow.js @@ -9,16 +9,12 @@ module.exports = async function () { const res = await entries const activity = { posts: [] } res.forEach((entry) => { - let excerpt = '' - if (entry.content) excerpt = entry.content - if (entry.data?.post_excerpt) excerpt = entry.data.post_excerpt - activity.posts.push({ id: entry.url, title: entry.title, url: entry.url, - description: excerpt, - content_html: excerpt, + description: entry.content, + content_html: entry.content, date_published: entry.published, }) })