fix: url slug
This commit is contained in:
parent
0f1d5d66d4
commit
2069f9a56c
1 changed files with 1 additions and 2 deletions
|
@ -42,7 +42,7 @@ module.exports = async function () {
|
||||||
episodes.push({
|
episodes.push({
|
||||||
name: matchedEpisode['name'],
|
name: matchedEpisode['name'],
|
||||||
title: matchedEpisode['title'],
|
title: matchedEpisode['title'],
|
||||||
url: `https://trakt.tv/shows/${matchedEpisode['slug']}`,
|
url: `https://trakt.tv/shows/${episode['show']['ids']['slug']}`,
|
||||||
subtext,
|
subtext,
|
||||||
image:
|
image:
|
||||||
`https://cdn.coryd.dev/tv/${matchedEpisode['name']
|
`https://cdn.coryd.dev/tv/${matchedEpisode['name']
|
||||||
|
@ -69,7 +69,6 @@ module.exports = async function () {
|
||||||
.toLowerCase()}.jpg` || 'https://cdn.coryd.dev/tv/missing-tv.jpg',
|
.toLowerCase()}.jpg` || 'https://cdn.coryd.dev/tv/missing-tv.jpg',
|
||||||
episode: episode['episode']['number'],
|
episode: episode['episode']['number'],
|
||||||
season: episode['episode']['season'],
|
season: episode['episode']['season'],
|
||||||
slug: episode['show']['ids']['slug'],
|
|
||||||
type: 'tv',
|
type: 'tv',
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue