mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 15:16:38 +00:00
Update Emby.Server.Implementations/SyncPlay/Group.cs
Co-authored-by: Bond-009 <bond.009@outlook.com>
This commit is contained in:
parent
622b60064d
commit
c08b1a4595
1 changed files with 1 additions and 1 deletions
|
|
@ -207,7 +207,7 @@ namespace Emby.Server.Implementations.SyncPlay
|
|||
{
|
||||
var item = _libraryManager.GetItemById(itemId);
|
||||
|
||||
if (!item?.IsVisibleStandalone(user) ?? true)
|
||||
if (item is null || !item.IsVisibleStandalone(user))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue