chore: drop duplicate response prop
This commit is contained in:
parent
e3eb9d83f1
commit
73017bec00
2 changed files with 5 additions and 9 deletions
|
@ -77,15 +77,13 @@ 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({
|
||||||
text: `📺 ${traktRes['show']['title']} • ${traktRes['episode']['title']}`,
|
content: `📺 <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>`,
|
||||||
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>`,
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
if (traktRes['type'] === 'movie') {
|
if (traktRes['type'] === 'movie') {
|
||||||
return Response.json({
|
return Response.json({
|
||||||
text: `🎥 ${traktRes['movie']['title']}`,
|
content: `🎥 <a href="https://trakt.tv/movies/${traktRes['movie']['ids']['slug']}">${traktRes['movie']['title']}</a>`,
|
||||||
html: `🎥 <a href="https://trakt.tv/movies/${traktRes['movie']['ids']['slug']}">${traktRes['movie']['title']}</a>`,
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -120,8 +118,7 @@ export default async () => {
|
||||||
const startMinutes = parseInt(startTime.split(',')[1].split(':')[1].trim())
|
const startMinutes = parseInt(startTime.split(',')[1].split(':')[1].trim())
|
||||||
const endMinutes = parseInt(endTime.split(',')[1].split(':')[1].trim())
|
const endMinutes = parseInt(endTime.split(',')[1].split(':')[1].trim())
|
||||||
const res = {
|
const res = {
|
||||||
text: `🏀 ${game['awayTeam']['teamName']} (${game['awayTeam']['wins']}-${game['awayTeam']['losses']}) @ ${game['homeTeam']['teamName']} (${game['homeTeam']['wins']}-${game['homeTeam']['losses']})`,
|
content: `🏀 ${game['awayTeam']['teamName']} (${game['awayTeam']['wins']}-${game['awayTeam']['losses']}) @ ${game['homeTeam']['teamName']} (${game['homeTeam']['wins']}-${game['homeTeam']['losses']})`,
|
||||||
html: `🏀 ${game['awayTeam']['teamName']} (${game['awayTeam']['wins']}-${game['awayTeam']['losses']}) @ ${game['homeTeam']['teamName']} (${game['homeTeam']['wins']}-${game['homeTeam']['losses']})`,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isCorrectDate) {
|
if (isCorrectDate) {
|
||||||
|
@ -159,8 +156,7 @@ export default async () => {
|
||||||
: `https://musicbrainz.org/search?query=${track['artistName'].replace(/\s+/g, '+')}&type=artist`
|
: `https://musicbrainz.org/search?query=${track['artistName'].replace(/\s+/g, '+')}&type=artist`
|
||||||
|
|
||||||
return Response.json({
|
return Response.json({
|
||||||
text: `🎧 ${sanitizeTrack(track['name'])} by ${artist}`,
|
content: `🎧 <a href="${trackUrl}">${sanitizeTrack(
|
||||||
html: `🎧 <a href="${trackUrl}">${sanitizeTrack(
|
|
||||||
track['name']
|
track['name']
|
||||||
)}</a> by <a href="${artistUrl}">${artist}</a>`,
|
)}</a> by <a href="${artistUrl}">${artist}</a>`,
|
||||||
})
|
})
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
const populateNowPlaying = (data) => {
|
const populateNowPlaying = (data) => {
|
||||||
loading.style.display = 'none'
|
loading.style.display = 'none'
|
||||||
content.innerHTML = data.html
|
content.innerHTML = data.content
|
||||||
content.classList.remove('hidden')
|
content.classList.remove('hidden')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue