support animated artist images

This commit is contained in:
jeffvli
2025-12-27 17:29:26 -08:00
parent c299752e44
commit 6207cea9f1
4 changed files with 16 additions and 4 deletions
@@ -333,7 +333,7 @@ const normalizeAlbumArtist = (
item.similarArtists?.map((artist) => ({
id: artist.id,
imageId: null,
imageUrl: artist?.artistImageUrl || null,
imageUrl: artist?.artistImageUrl?.replace(/\?size=\d+/, '') || null,
name: artist.name,
})) || null,
songCount,