fix: feed date

This commit is contained in:
Cory Dransfeldt 2024-04-20 08:27:15 -07:00
parent 57de1aaedf
commit a68cf6ccb8
No known key found for this signature in database

View file

@ -10,7 +10,7 @@ export default async function () {
description: book['description'], description: book['description'],
image: `https://coryd.dev/.netlify/images/?url=${encodeURIComponent(book['thumbnail'].replace('&edge=curl', ''))}&fit=cover&w=200&h=307`, image: `https://coryd.dev/.netlify/images/?url=${encodeURIComponent(book['thumbnail'].replace('&edge=curl', ''))}&fit=cover&w=200&h=307`,
url: `https://openlibrary.org/isbn/${book['isbn']}`, url: `https://openlibrary.org/isbn/${book['isbn']}`,
dateAdded: book['dateStarted'], dateAdded: book?.['dateStarted'] || book?.['dateFinished'],
status: book['status'], status: book['status'],
type: 'book', type: 'book',
} }