mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-04 20:13:53 +01:00
Update Emby.Server.Implementations/SyncPlay/GroupController.cs
This commit is contained in:
parent
36fee4e60a
commit
1b8adf0f7c
1 changed files with 4 additions and 2 deletions
|
|
@ -174,8 +174,10 @@ namespace Emby.Server.Implementations.SyncPlay
|
|||
case SyncPlayBroadcastType.CurrentSession:
|
||||
return new SessionInfo[] { from };
|
||||
case SyncPlayBroadcastType.AllGroup:
|
||||
return Participants.Values.Select(
|
||||
session => session.Session).ToArray();
|
||||
return Participants
|
||||
.Values
|
||||
.Select(session => session.Session)
|
||||
.ToArray();
|
||||
case SyncPlayBroadcastType.AllExceptCurrentSession:
|
||||
return Participants.Values.Select(
|
||||
session => session.Session).Where(
|
||||
|
|
|
|||
Loading…
Reference in a new issue