fix: link data
This commit is contained in:
parent
b7a955a3ab
commit
30855b84a0
1 changed files with 4 additions and 4 deletions
|
@ -9,12 +9,12 @@ module.exports = async function () {
|
||||||
type: 'json',
|
type: 'json',
|
||||||
fetchOptions: { headers },
|
fetchOptions: { headers },
|
||||||
})
|
})
|
||||||
const feed = await res
|
const favorites = await res
|
||||||
const links = feed.feed.splice(0, 5).map(link => {
|
return favorites.feed.splice(0, 5).map(link => {
|
||||||
return {
|
return {
|
||||||
title: link.content.title,
|
title: link.content.title,
|
||||||
url: link.content.url
|
url: link.content.url,
|
||||||
|
time: link.content['publication_date']
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
return links
|
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue