mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 10:53:33 +00:00
Fix missing related artist images
This commit is contained in:
parent
96ace40fc3
commit
663893dccb
1 changed files with 1 additions and 1 deletions
|
|
@ -202,7 +202,7 @@ const normalizeAlbumArtist = (
|
||||||
similarArtists:
|
similarArtists:
|
||||||
item.similarArtists?.map((artist) => ({
|
item.similarArtists?.map((artist) => ({
|
||||||
id: artist.id,
|
id: artist.id,
|
||||||
imageUrl: getImageUrl({ url: artist?.artistImageUrl || null }),
|
imageUrl: artist?.artistImageUrl || null,
|
||||||
name: artist.name,
|
name: artist.name,
|
||||||
})) || null,
|
})) || null,
|
||||||
songCount: item.songCount,
|
songCount: item.songCount,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue