diff --git a/src/renderer/features/player/components/full-screen-player-image.tsx b/src/renderer/features/player/components/full-screen-player-image.tsx index 588010ead..c674d36e8 100644 --- a/src/renderer/features/player/components/full-screen-player-image.tsx +++ b/src/renderer/features/player/components/full-screen-player-image.tsx @@ -269,25 +269,7 @@ export const FullScreenPlayerImage = () => { ? radioMetadata?.title || stationName || 'Radio' : currentSong?.name} - {isPlayingRadio ? ( - - {stationName || 'Radio'} - - ) : ( - - {currentSong?.album} - - )} - + {isPlayingRadio ? radioMetadata?.artist || stationName || 'Radio' : currentSong?.artists?.map((artist, index) => ( @@ -314,6 +296,24 @@ export const FullScreenPlayerImage = () => { ))} + {isPlayingRadio ? ( + + {stationName || 'Radio'} + + ) : ( + + {currentSong?.album} + + )} {!isPlayingRadio && ( {playerItems.map((i) => !i.disabled && builtDataItems[i.id])}