diff options
| author | Tim Eisele <Ghost_of_Stone@web.de> | 2025-04-27 02:49:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-26 18:49:30 -0600 |
| commit | f576783ae11d66ab1c4437dd975eefeea638bb3f (patch) | |
| tree | 5b05055dcc3b6b115b422c87325b834d04e4175d /MediaBrowser.Providers/Playlists | |
| parent | 67110b512a39a3192ed010408ac78418477c26a9 (diff) | |
Fix distinction queries (#14007)
Diffstat (limited to 'MediaBrowser.Providers/Playlists')
| -rw-r--r-- | MediaBrowser.Providers/Playlists/PlaylistItemsProvider.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Providers/Playlists/PlaylistItemsProvider.cs b/MediaBrowser.Providers/Playlists/PlaylistItemsProvider.cs index 51a3ba0c7f..a986b0b699 100644 --- a/MediaBrowser.Providers/Playlists/PlaylistItemsProvider.cs +++ b/MediaBrowser.Providers/Playlists/PlaylistItemsProvider.cs @@ -99,7 +99,7 @@ public class PlaylistItemsProvider : ILocalMetadataProvider<Playlist>, .OfType<CollectionFolder>() .Where(f => f.CollectionType.HasValue && !_ignoredCollections.Contains(f.CollectionType.Value)) .SelectMany(f => f.PhysicalLocations) - .Distinct(StringComparer.OrdinalIgnoreCase) + .Distinct() .ToList(); using (var stream = File.OpenRead(path)) |
