fix image condition for discord rpc image with Jellyfin (#1509)

This commit is contained in:
jeffvli
2026-01-14 22:03:22 -08:00
parent 0947e209ce
commit 83c47454c6
@@ -196,7 +196,7 @@ export const useDiscordRpc = () => {
if (discordSettings.showServerImage && song) {
if (song._uniqueId === currentSong?._uniqueId && imageUrlRef.current) {
if (song._serverType === ServerType.JELLYFIN && song.imageUrl) {
if (song._serverType === ServerType.JELLYFIN) {
activity.largeImageKey = imageUrlRef.current;
} else if (
song._serverType === ServerType.NAVIDROME ||