chore: fix episode link

This commit is contained in:
Cory Dransfeldt 2023-10-19 11:04:38 -07:00
parent 8197c3f8ba
commit ce9611c828

View file

@ -54,7 +54,7 @@ export default async () => {
if (traktRes['type'] === 'episode') { if (traktRes['type'] === 'episode') {
return Response.json({ return Response.json({
text: `📺 ${traktRes['show']['title']}${traktRes['episode']['title']}`, text: `📺 ${traktRes['show']['title']}${traktRes['episode']['title']}`,
html: `📺 <a href="https://trakt.tv/shows/${traktRes['show']['ids']['slug']}">${traktRes['show']['title']}</a> • <a href="https://trakt.tv/shows/${traktRes['show']['ids']['slug']}">${traktRes['episode']['title']}</a>`, html: `📺 <a href="https://trakt.tv/shows/${traktRes['show']['ids']['slug']}">${traktRes['show']['title']}</a> • <a href="https://trakt.tv/shows/${traktRes['show']['ids']['slug']}/seasons/${traktRes['episode']['season']}/episodes/${traktRes['episode']['number']}">${traktRes['episode']['title']}</a>`,
}) })
} }