From 42bb2bf66f4aad67bd61712f4cc30ecb8c06f5f7 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Wed, 7 May 2025 19:25:25 -0700 Subject: [PATCH] fix regression on album artist play button --- .../features/artists/components/album-artist-detail-content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/features/artists/components/album-artist-detail-content.tsx b/src/renderer/features/artists/components/album-artist-detail-content.tsx index 523a3e2e..a8a8499f 100644 --- a/src/renderer/features/artists/components/album-artist-detail-content.tsx +++ b/src/renderer/features/artists/components/album-artist-detail-content.tsx @@ -297,7 +297,7 @@ export const AlbumArtistDetailContent = ({ background }: AlbumArtistDetailConten handlePlayQueueAdd?.({ byItemType: { id: [routeId], - type: albumArtistId ? LibraryItem.ALBUM : LibraryItem.ALBUM_ARTIST, + type: albumArtistId ? LibraryItem.ALBUM_ARTIST : LibraryItem.ARTIST, }, playType: playType || playButtonBehavior, });