fix: url slug

This commit is contained in:
Cory Dransfeldt 2023-09-05 11:27:02 -07:00
parent 0f1d5d66d4
commit 2069f9a56c
No known key found for this signature in database

View file

@ -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',
}) })
} }