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']})