diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-10-22 13:28:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-22 13:28:09 +0100 |
| commit | 1b8adf0f7c21f6596e2fdcc0ac431c831d0ad582 (patch) | |
| tree | 0f3f5d66a0a634c78025a5dbd977300e5222b3de | |
| parent | 36fee4e60a033d8d785e62788aaf00999d497c58 (diff) | |
Update Emby.Server.Implementations/SyncPlay/GroupController.cs
| -rw-r--r-- | Emby.Server.Implementations/SyncPlay/GroupController.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/SyncPlay/GroupController.cs b/Emby.Server.Implementations/SyncPlay/GroupController.cs index 26972de8a..2d8668014 100644 --- a/Emby.Server.Implementations/SyncPlay/GroupController.cs +++ b/Emby.Server.Implementations/SyncPlay/GroupController.cs @@ -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( |
