Fix missing related artist images

This commit is contained in:
jeffvli 2023-08-09 21:30:27 -07:00
parent 96ace40fc3
commit 663893dccb

View file

@ -202,7 +202,7 @@ const normalizeAlbumArtist = (
similarArtists:
item.similarArtists?.map((artist) => ({
id: artist.id,
imageUrl: getImageUrl({ url: artist?.artistImageUrl || null }),
imageUrl: artist?.artistImageUrl || null,
name: artist.name,
})) || null,
songCount: item.songCount,