diff options
| author | Bond-009 <bond.009@outlook.com> | 2023-05-30 10:00:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-30 10:00:53 +0200 |
| commit | 6dca53047faf014314a63221771180be2a33259a (patch) | |
| tree | dee45f5871c6f40701d7681983685d7270cad0eb /Emby.Server.Implementations/Playlists | |
| parent | d8f0933f335044249048e9ae0c0030ca0b780fee (diff) | |
| parent | 81746666ded02f844605fb26bc1c0ac2dd650bb0 (diff) | |
Merge pull request #9818 from Shadowghost/fixes
Diffstat (limited to 'Emby.Server.Implementations/Playlists')
| -rw-r--r-- | Emby.Server.Implementations/Playlists/PlaylistsFolder.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Playlists/PlaylistsFolder.cs b/Emby.Server.Implementations/Playlists/PlaylistsFolder.cs index 5492097152..d67caa52dc 100644 --- a/Emby.Server.Implementations/Playlists/PlaylistsFolder.cs +++ b/Emby.Server.Implementations/Playlists/PlaylistsFolder.cs @@ -42,7 +42,7 @@ namespace Emby.Server.Implementations.Playlists query.Recursive = true; query.IncludeItemTypes = new[] { BaseItemKind.Playlist }; - return LibraryManager.GetItemsResult(query); + return QueryWithPostFiltering2(query); } public override string GetClientTypeName() |
