diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2026-02-09 00:45:48 +0100 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2026-02-09 00:45:48 +0100 |
| commit | edc6caf255da2cb5fd5aef51d58a168ae0f39cb3 (patch) | |
| tree | aae4cf803fb614d66744eecd4e0d6bbd622952a0 /Emby.Server.Implementations/Playlists | |
| parent | 0a99a78ddcb81498bad84fccaa22f6d3ff74d031 (diff) | |
Cleanup and fix version ordering
Diffstat (limited to 'Emby.Server.Implementations/Playlists')
| -rw-r--r-- | Emby.Server.Implementations/Playlists/PlaylistsFolder.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Playlists/PlaylistsFolder.cs b/Emby.Server.Implementations/Playlists/PlaylistsFolder.cs index a5be2b616e..3bbbdd43a0 100644 --- a/Emby.Server.Implementations/Playlists/PlaylistsFolder.cs +++ b/Emby.Server.Implementations/Playlists/PlaylistsFolder.cs @@ -43,8 +43,9 @@ namespace Emby.Server.Implementations.Playlists } query.Recursive = true; - query.IncludeItemTypes = new[] { BaseItemKind.Playlist }; - return QueryWithPostFiltering2(query); + query.IncludeItemTypes = [BaseItemKind.Playlist]; + + return QueryWithPostFiltering(query); } public override string GetClientTypeName() |
