fix: fallback date
This commit is contained in:
parent
495cf7eeae
commit
fe186b118c
1 changed files with 3 additions and 1 deletions
|
@ -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'],
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue