fix: link data

This commit is contained in:
Cory Dransfeldt 2023-07-08 20:11:14 -07:00
parent b7a955a3ab
commit 30855b84a0
No known key found for this signature in database

View file

@ -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
} }