fix: consistency

This commit is contained in:
Cory Dransfeldt 2024-05-17 13:30:10 -07:00
parent d5279c5c8b
commit 42ea508d46
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -159,7 +159,7 @@ export default {
// set the entry excerpt // set the entry excerpt
if (entry.description) excerpt = entry.description // general case if (entry.description) excerpt = entry.description // general case
if (entry?.data?.description) excerpt = `${entry?.data?.description}<br/><br/>` // links where description is stored in frontmatter if (entry?.data?.description) excerpt = `${entry?.data?.description}<br/><br/>` // links where description is stored in frontmatter
if (entry.type === 'book') excerpt = `${entry.description}<br/><br/>` // books if (entry.type === 'book' || entry.type === 'movie') excerpt = `${entry.description}<br/><br/>` // books
// send full post content to rss // send full post content to rss
if (entry.content) excerpt = sanitizeHtml(`${entry.content}${feedNote}`, { if (entry.content) excerpt = sanitizeHtml(`${entry.content}${feedNote}`, {

View file

@ -51,7 +51,7 @@ export default async function () {
dateAdded: item['last_watched'], dateAdded: item['last_watched'],
year: item['year'], year: item['year'],
url: `https://www.themoviedb.org/movie/${item['tmdb_id']}`, url: `https://www.themoviedb.org/movie/${item['tmdb_id']}`,
description: `<p>${item['title']} (${item['year']})</p><p>Watched at: ${DateTime.fromISO(item['last_watched'], { zone: 'utc' }).setZone('America/Los_Angeles').toFormat('MMMM d, yyyy, h:mma')}</p>`, description: `${item['title']} (${item['year']})<br/>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`, image: `https://coryd.dev/media/movies/poster-${item['tmdb_id']}.jpg`,
backdrop: `https://coryd.dev/media/movies/backdrops/backdrop-${item['tmdb_id']}.jpg`, backdrop: `https://coryd.dev/media/movies/backdrops/backdrop-${item['tmdb_id']}.jpg`,
plays: item['plays'], plays: item['plays'],