chore: conditional index access
This commit is contained in:
parent
8edecf908d
commit
bb44264198
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ export default async () => {
|
||||||
})
|
})
|
||||||
.then((data) => data.json())
|
.then((data) => data.json())
|
||||||
.catch()
|
.catch()
|
||||||
const track = trackRes.data[0]['attributes']
|
const track = trackRes.data?.[0]['attributes']
|
||||||
|
|
||||||
return Response.json({
|
return Response.json({
|
||||||
artist: aliasArtist(track['artistName']),
|
artist: aliasArtist(track['artistName']),
|
||||||
|
|
Reference in a new issue