diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-04-29 21:14:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-29 21:14:57 +0200 |
| commit | eeb5d4bd1e63ad89f599fd52a79b3c80ed8f8ad1 (patch) | |
| tree | 039150727c14b0ab9d1198de40a003f0ccdb1795 /Emby.Server.Implementations | |
| parent | 78e66325fdc596ef434aba93a6a9f086225642ee (diff) | |
| parent | bb6fddde9ac48905b876717806754a052bf0ad24 (diff) | |
Merge pull request #5842 from BaronGreenback/optimization
Code Clean up: Group Methods
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/Playlists/PlaylistManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Playlists/PlaylistManager.cs b/Emby.Server.Implementations/Playlists/PlaylistManager.cs index 932f721ab..2d1a559f1 100644 --- a/Emby.Server.Implementations/Playlists/PlaylistManager.cs +++ b/Emby.Server.Implementations/Playlists/PlaylistManager.cs @@ -215,7 +215,7 @@ namespace Emby.Server.Implementations.Playlists // Create a list of the new linked children to add to the playlist var childrenToAdd = newItems - .Select(i => LinkedChild.Create(i)) + .Select(LinkedChild.Create) .ToList(); // Log duplicates that have been ignored, if any |
