aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorChristopher Young <c.t.ythegamer@gmail.com>2025-10-08 12:27:46 -0600
committerChristopher Young <c.t.ythegamer@gmail.com>2025-10-08 12:27:46 -0600
commit91b2b7fc3dfe23fdc01834f2f1364e9f8bd98fe4 (patch)
tree30536fb0bbcf519f700f3ae2772ea4c247fbf063 /Emby.Server.Implementations
parentd6a1c8413c6a213f6e579246c1b85aad9b028b3a (diff)
added tests
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/SyncPlay/Group.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/SyncPlay/Group.cs b/Emby.Server.Implementations/SyncPlay/Group.cs
index 0095ba0a37..1142a2f0af 100644
--- a/Emby.Server.Implementations/SyncPlay/Group.cs
+++ b/Emby.Server.Implementations/SyncPlay/Group.cs
@@ -206,7 +206,8 @@ namespace Emby.Server.Implementations.SyncPlay
foreach (var itemId in queue)
{
var item = _libraryManager.GetItemById(itemId);
- if (!item?.IsVisibleStandalone(user) ?? false)
+
+ if (!item?.IsVisibleStandalone(user) ?? true)
{
return false;
}