chore: fix feed output

This commit is contained in:
Cory Dransfeldt 2023-09-20 10:01:15 -07:00
parent f384ae9b39
commit 443aaa41ed
No known key found for this signature in database
2 changed files with 3 additions and 7 deletions

View file

@ -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',
})

View file

@ -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,
})
})