fix: more stable link date
This commit is contained in:
parent
761a795e8f
commit
3cff5d47e6
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "8.1.3",
|
||||
"version": "8.1.4",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
@ -33,7 +33,7 @@ export default async function () {
|
|||
title: link['title'],
|
||||
url: link['source_url'],
|
||||
tags: [...new Set(Object.keys(link['tags']))],
|
||||
date: `${link['updated_at'] || link['created_at']}`,
|
||||
date: `${link['created_at'] || link['updated_at']}`,
|
||||
author: link['author'],
|
||||
summary: link['summary'],
|
||||
note: link['notes'],
|
||||
|
|
Reference in a new issue