show right control rating for subsonic servers

This commit is contained in:
Kendall Garner
2025-09-10 17:27:07 -07:00
parent 4328d8860e
commit 78dc89303d
@@ -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],