chore: deps; better single episode show display; styles

This commit is contained in:
Cory Dransfeldt 2024-06-17 09:51:41 -07:00
parent 5a8ad0af13
commit fbce37d5a0
No known key found for this signature in database
5 changed files with 39 additions and 38 deletions

View file

@ -91,7 +91,7 @@ export default async function () {
showEpisodesMap[showTmdbId].episodes.push({
name: showTitle,
url: `/watching/shows/${showTmdbId}`,
subtext: `${showTitle} / S${seasonNumber}E${episodeNumber}`,
subtext: `S${seasonNumber}E${episodeNumber}`,
episode: episodeNumber,
season: seasonNumber,
tmdbId: showTmdbId,
@ -113,7 +113,7 @@ export default async function () {
if (show.episodes.length > 1) {
episodeData.push({
name: show.title,
name: show['title'],
url: `/watching/shows/${show['tmdbId']}`,
subtext: `S${startingSeason}E${startingEpisode} - S${endingSeason}E${endingEpisode}`,
startingEpisode,