Merge pull request #1182 from benphelps/fix-1181

Fix emby/jellyfin now playing > 1
pull/1187/head
shamoon 2 years ago committed by GitHub
commit 8378066bd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -272,7 +272,7 @@ export default function Component({ service }) {
);
}
if (playing.length === -1)
if (playing.length > 0)
return (
<>
{enableBlocks && <CountBlocks service={service} countData={countData} />}

Loading…
Cancel
Save