chore: remove unnecessary response properties
This commit is contained in:
parent
e12527b122
commit
20a824b0a6
1 changed files with 0 additions and 5 deletions
|
@ -49,15 +49,12 @@ export default async () => {
|
||||||
if (Object.keys(traktRes).length) {
|
if (Object.keys(traktRes).length) {
|
||||||
if (traktRes['type'] === 'episode') {
|
if (traktRes['type'] === 'episode') {
|
||||||
return Response.json({
|
return Response.json({
|
||||||
title: traktRes['show']['title'],
|
|
||||||
episode: traktRes['episode']['title'],
|
|
||||||
text: `📺 ${traktRes['show']['title']} • ${traktRes['episode']['title']}`,
|
text: `📺 ${traktRes['show']['title']} • ${traktRes['episode']['title']}`,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
if (traktRes['type'] === 'movie') {
|
if (traktRes['type'] === 'movie') {
|
||||||
return Response.json({
|
return Response.json({
|
||||||
title: traktRes['movie']['title'],
|
|
||||||
text: `🎥 ${traktRes['movie']['title']}`,
|
text: `🎥 ${traktRes['movie']['title']}`,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -76,8 +73,6 @@ export default async () => {
|
||||||
const artist = aliasArtist(track['artistName'])
|
const artist = aliasArtist(track['artistName'])
|
||||||
|
|
||||||
return Response.json({
|
return Response.json({
|
||||||
artist,
|
|
||||||
title: track['name'],
|
|
||||||
text: `🎧 ${track['name']} by ${artist}`,
|
text: `🎧 ${track['name']} by ${artist}`,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue