From db85193bbff33b86e32b389852e2b76e4a89ca9f Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 4 Apr 2023 15:00:09 -0700 Subject: [PATCH] Fix emby/jellyfin now playing > 1 --- src/widgets/emby/component.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/emby/component.jsx b/src/widgets/emby/component.jsx index 3f70a79d6..0e0351ea1 100644 --- a/src/widgets/emby/component.jsx +++ b/src/widgets/emby/component.jsx @@ -272,7 +272,7 @@ export default function Component({ service }) { ); } - if (playing.length === -1) + if (playing.length > 0) return ( <> {enableBlocks && }