chore: show all links in feeds

This commit is contained in:
Cory Dransfeldt 2023-08-04 20:49:11 -07:00
parent d81d7d6f0a
commit 6162b8b125
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ module.exports = async function () {
})
const data = await res
const links = data.results.filter((result) => Object.keys(result.tags).includes('share'))
return links.splice(0, 5).map((link) => {
return links.map((link) => {
return {
title: link['title'],
url: link['source_url'],