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',
|
||||
fetchOptions: { headers },
|
||||
})
|
||||
const feed = await res
|
||||
const links = feed.feed.splice(0, 5).map(link => {
|
||||
const favorites = await res
|
||||
return favorites.feed.splice(0, 5).map(link => {
|
||||
return {
|
||||
title: link.content.title,
|
||||
url: link.content.url
|
||||
url: link.content.url,
|
||||
time: link.content['publication_date']
|
||||
}
|
||||
})
|
||||
return links
|
||||
}
|
||||
|
|
Reference in a new issue