Skip to content

Commit

Permalink
Merge pull request #1182 from benphelps/fix-1181
Browse files Browse the repository at this point in the history
Fix emby/jellyfin now playing > 1
  • Loading branch information
shamoon authored Apr 4, 2023
2 parents 364c7ce + db85193 commit 8378066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/widgets/emby/component.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ export default function Component({ service }) {
);
}

if (playing.length === -1)
if (playing.length > 0)
return (
<>
{enableBlocks && <CountBlocks service={service} countData={countData} />}
Expand Down

0 comments on commit 8378066

Please sign in to comment.