fix: json feed output

This commit is contained in:
Cory Dransfeldt 2024-10-12 07:32:24 -07:00
parent 0675d3400c
commit 8f44ce9bdd
No known key found for this signature in database
2 changed files with 3 additions and 7 deletions

View file

@ -97,10 +97,5 @@ export default {
return `${allButLast} and ${last}`
},
formatVenue: (venue) => venue.split(',')[0].trim(),
lastWatchedEpisode: (episodes) => {
if (!episodes.length) return
const sortedEpisodes = episodes.sort((a, b) => new Date(a.last_watched_at) - new Date(b.last_watched_at))
return `S${sortedEpisodes[sortedEpisodes.length - 1]['season_number']}E${sortedEpisodes[sortedEpisodes.length - 1]['episode_number']}`
}
formatVenue: (venue) => venue.split(',')[0].trim()
}

View file

@ -16,7 +16,8 @@
{
"id": "{{ entry.feed.url | encodeAmp }}",
"url": "{{ entry.feed.url | encodeAmp }}",
"title": "{{ entry.feed.title }}",
"title": "{{ entry.feed.title | escape }}",
"content_text": "{{ entry.feed.description | markdown | strip_html | escape| normalize_whitespace | rstrip | truncatewords: 50, '...' }}",
"date_published": "{{ entry.feed.date | stringToRFC3339 }}"
}{%- if forloop.last == false -%},{%- endif -%}
{%- endfor -%}