diff --git a/src/renderer/features/player/components/right-controls.tsx b/src/renderer/features/player/components/right-controls.tsx index 91f0af96..61d37268 100644 --- a/src/renderer/features/player/components/right-controls.tsx +++ b/src/renderer/features/player/components/right-controls.tsx @@ -115,7 +115,9 @@ export const RightControls = () => { }; const isSongDefined = Boolean(currentSong?.id); - const showRating = isSongDefined && server?.type === ServerType.NAVIDROME; + const showRating = + isSongDefined && + (server?.type === ServerType.NAVIDROME || server?.type === ServerType.SUBSONIC); useHotkeys([ [bindings.volumeDown.isGlobal ? '' : bindings.volumeDown.hotkey, handleVolumeDown],