chore: feed consistency
This commit is contained in:
parent
4a677a9ca2
commit
6c889dc592
3 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@ module.exports = {
|
||||||
if (item.type === 'book') normalized['alt'] = item['title']
|
if (item.type === 'book') normalized['alt'] = item['title']
|
||||||
if (item.type === 'movie') {
|
if (item.type === 'movie') {
|
||||||
normalized['title'] = item['title']
|
normalized['title'] = item['title']
|
||||||
normalized['alt'] = `${item['title']} - ${item['summary']}`
|
normalized['alt'] = `${item['title']} - ${item['description']}`
|
||||||
}
|
}
|
||||||
if (item.type === 'tv') {
|
if (item.type === 'tv') {
|
||||||
normalized['title'] = item['title']
|
normalized['title'] = item['title']
|
||||||
|
|
|
@ -13,7 +13,7 @@ module.exports = async function () {
|
||||||
return {
|
return {
|
||||||
title: item['title'],
|
title: item['title'],
|
||||||
date: item['pubDate'],
|
date: item['pubDate'],
|
||||||
summary: item['description'],
|
description: item['contentSnippet'],
|
||||||
url: item['link'],
|
url: item['link'],
|
||||||
id: item['guid'],
|
id: item['guid'],
|
||||||
type: 'article',
|
type: 'article',
|
||||||
|
|
|
@ -15,7 +15,7 @@ module.exports = async function () {
|
||||||
return {
|
return {
|
||||||
title: item['title'],
|
title: item['title'],
|
||||||
date: item['pubDate'],
|
date: item['pubDate'],
|
||||||
summary: item['contentSnippet'],
|
description: item['contentSnippet'],
|
||||||
image: images.length
|
image: images.length
|
||||||
? images
|
? images
|
||||||
.map((image) => image.replace(/.*src="([^"]*)".*/, '$1'))[0]
|
.map((image) => image.replace(/.*src="([^"]*)".*/, '$1'))[0]
|
||||||
|
|
Reference in a new issue