chore: fix feed output
This commit is contained in:
parent
f384ae9b39
commit
443aaa41ed
2 changed files with 3 additions and 7 deletions
|
@ -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',
|
||||
})
|
||||
|
|
|
@ -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,
|
||||
})
|
||||
})
|
||||
|
|
Reference in a new issue