Skip to content

Commit

Permalink
Fix missing related artist images
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffvli committed Aug 10, 2023
1 parent 96ace40 commit 663893d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/api/navidrome/navidrome-normalize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

1 comment on commit 663893d

@vercel
Copy link

@vercel vercel bot commented on 663893d Aug 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

feishin – ./

feishin-jeffvli.vercel.app
feishin-git-development-jeffvli.vercel.app
feishin.vercel.app

Please sign in to comment.