chore: update link ids

This commit is contained in:
Cory Dransfeldt 2023-08-04 21:00:46 -07:00
parent fe186b118c
commit 32065ea071
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ module.exports = async function () {
? new Date(link['published_date'])
: new Date(link['created_at']),
summary: link['summary'],
id: link['id'],
id: btoa(link['source_url']),
}
})
}

View file

@ -9,7 +9,7 @@ permalink: '/links.json'
"feed_url": "https://coryd.dev/links.json",
"items": [{% for link in links %}
{
"id": "{{ link.url | stripUtm | encodeAmp }}",
"id": "{{ link.id }}",
"title": "{{ link.title | escape }}",
"url": "{{ link.url | stripUtm | encodeAmp }}",
"content_text": "{{ link.summary | escape }}",