fix: restore tv subtext
This commit is contained in:
parent
39f4a049be
commit
591269ae92
1 changed files with 12 additions and 3 deletions
|
@ -30,14 +30,23 @@ module.exports = async function () {
|
||||||
1
|
1
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// populate the subtext to show the appropriate range if it spans multiple seasons
|
||||||
|
// this yields a string in the format of S1E1 - S2E2 or S1E1 - E2
|
||||||
|
const subtext =
|
||||||
|
matchedEpisode['season'] === episode['episode']['season']
|
||||||
|
? `S${matchedEpisode['startingSeason'] || matchedEpisode['season']}E${
|
||||||
|
matchedEpisode['startingEpisode'] || matchedEpisode['episode']
|
||||||
|
} - E${episode['episode']['number']}`
|
||||||
|
: `S${matchedEpisode['startingSeason'] || matchedEpisode['season']}E${
|
||||||
|
matchedEpisode['startingEpisode'] || matchedEpisode['episode']
|
||||||
|
} - S${episode['episode']['season']}E${episode['episode']['number']}`
|
||||||
|
|
||||||
// push the new episode to the array
|
// push the new episode to the array
|
||||||
episodes.push({
|
episodes.push({
|
||||||
name: matchedEpisode['name'],
|
name: matchedEpisode['name'],
|
||||||
title: matchedEpisode['title'],
|
title: matchedEpisode['title'],
|
||||||
url: `https://trakt.tv/shows/${episode['show']['ids']['slug']}`,
|
url: `https://trakt.tv/shows/${episode['show']['ids']['slug']}`,
|
||||||
subtext: `S${matchedEpisode['startingSeason'] || matchedEpisode['season']}E${
|
subtext,
|
||||||
matchedEpisode['startingEpisode'] || matchedEpisode['episode']
|
|
||||||
} - S${episode['episode']['season']}E${episode['episode']['number']}`,
|
|
||||||
image:
|
image:
|
||||||
`https://cdn.coryd.dev/tv/${matchedEpisode['name']
|
`https://cdn.coryd.dev/tv/${matchedEpisode['name']
|
||||||
.replace(':', '')
|
.replace(':', '')
|
||||||
|
|
Reference in a new issue