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'],
|
title: book['title'],
|
||||||
url: book['link'],
|
url: book['link'],
|
||||||
isbn: book['isbn'],
|
isbn: book['isbn'],
|
||||||
description: book['content'],
|
description: book['book_description'],
|
||||||
dateAdded: book['user_date_added'],
|
dateAdded: book['user_date_added'],
|
||||||
type: 'book',
|
type: 'book',
|
||||||
})
|
})
|
||||||
|
|
|
@ -9,16 +9,12 @@ module.exports = async function () {
|
||||||
const res = await entries
|
const res = await entries
|
||||||
const activity = { posts: [] }
|
const activity = { posts: [] }
|
||||||
res.forEach((entry) => {
|
res.forEach((entry) => {
|
||||||
let excerpt = ''
|
|
||||||
if (entry.content) excerpt = entry.content
|
|
||||||
if (entry.data?.post_excerpt) excerpt = entry.data.post_excerpt
|
|
||||||
|
|
||||||
activity.posts.push({
|
activity.posts.push({
|
||||||
id: entry.url,
|
id: entry.url,
|
||||||
title: entry.title,
|
title: entry.title,
|
||||||
url: entry.url,
|
url: entry.url,
|
||||||
description: excerpt,
|
description: entry.content,
|
||||||
content_html: excerpt,
|
content_html: entry.content,
|
||||||
date_published: entry.published,
|
date_published: entry.published,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Reference in a new issue