aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2026-02-09 00:45:48 +0100
committerShadowghost <Ghost_of_Stone@web.de>2026-02-09 00:45:48 +0100
commitedc6caf255da2cb5fd5aef51d58a168ae0f39cb3 (patch)
treeaae4cf803fb614d66744eecd4e0d6bbd622952a0 /Emby.Server.Implementations
parent0a99a78ddcb81498bad84fccaa22f6d3ff74d031 (diff)
Cleanup and fix version ordering
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/Playlists/PlaylistsFolder.cs5
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()