From 42ea508d467ffd30921d56e502274dad3839ff04 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 17 May 2024 13:30:10 -0700 Subject: [PATCH] fix: consistency --- config/filters/index.js | 2 +- src/_data/movies.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/filters/index.js b/config/filters/index.js index 8a9797b3..ff987c08 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -159,7 +159,7 @@ export default { // set the entry excerpt if (entry.description) excerpt = entry.description // general case if (entry?.data?.description) excerpt = `${entry?.data?.description}

` // links where description is stored in frontmatter - if (entry.type === 'book') excerpt = `${entry.description}

` // books + if (entry.type === 'book' || entry.type === 'movie') excerpt = `${entry.description}

` // books // send full post content to rss if (entry.content) excerpt = sanitizeHtml(`${entry.content}${feedNote}`, { diff --git a/src/_data/movies.js b/src/_data/movies.js index af07c44d..47a725cc 100644 --- a/src/_data/movies.js +++ b/src/_data/movies.js @@ -51,7 +51,7 @@ export default async function () { dateAdded: item['last_watched'], year: item['year'], url: `https://www.themoviedb.org/movie/${item['tmdb_id']}`, - description: `

${item['title']} (${item['year']})

Watched at: ${DateTime.fromISO(item['last_watched'], { zone: 'utc' }).setZone('America/Los_Angeles').toFormat('MMMM d, yyyy, h:mma')}

`, + description: `${item['title']} (${item['year']})
Watched at: ${DateTime.fromISO(item['last_watched'], { zone: 'utc' }).setZone('America/Los_Angeles').toFormat('MMMM d, yyyy, h:mma')}`, image: `https://coryd.dev/media/movies/poster-${item['tmdb_id']}.jpg`, backdrop: `https://coryd.dev/media/movies/backdrops/backdrop-${item['tmdb_id']}.jpg`, plays: item['plays'],