fix: fallback date

This commit is contained in:
Cory Dransfeldt 2023-08-04 20:55:03 -07:00
parent 495cf7eeae
commit fe186b118c
No known key found for this signature in database

View file

@ -15,7 +15,9 @@ module.exports = async function () {
return { return {
title: link['title'], title: link['title'],
url: link['source_url'], url: link['source_url'],
date: new Date(link['published_date']), date: link['published_date']
? new Date(link['published_date'])
: new Date(link['created_at']),
summary: link['summary'], summary: link['summary'],
id: link['id'], id: link['id'],
} }