aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2024-10-28 14:34:29 +0000
committerJPVenson <github@jpb.email>2024-10-28 14:34:29 +0000
commit0639758abd157330c17bdc1831020bfbf6c0ce73 (patch)
treefc76dc728f2acf8640cfbb438b0cbdde96f7e425 /Jellyfin.Server.Implementations
parentf80fa96453a173ce5ea6e7ecab7900137d4b569d (diff)
Updated all instances of ImmutableList to ImmutableArray
Diffstat (limited to 'Jellyfin.Server.Implementations')
-rw-r--r--Jellyfin.Server.Implementations/MediaSegments/MediaSegmentManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/MediaSegments/MediaSegmentManager.cs b/Jellyfin.Server.Implementations/MediaSegments/MediaSegmentManager.cs
index d641f521b9..151b616f7e 100644
--- a/Jellyfin.Server.Implementations/MediaSegments/MediaSegmentManager.cs
+++ b/Jellyfin.Server.Implementations/MediaSegments/MediaSegmentManager.cs
@@ -154,7 +154,7 @@ public class MediaSegmentManager : IMediaSegmentManager
return query
.OrderBy(e => e.StartTicks)
.AsNoTracking()
- .ToImmutableList()
+ .ToImmutableArray()
.Select(Map);
}