aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/MediaSegments/MediaSegmentManager.cs
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2024-11-17 11:03:43 +0000
committerJPVenson <github@jpb.email>2024-11-17 11:03:43 +0000
commitb39553611d0d6702ef657f76573cefa2ee437745 (patch)
tree9534eb388e16ee057042db0cdf4ad43b063fb45a /Jellyfin.Server.Implementations/MediaSegments/MediaSegmentManager.cs
parent17e4485b946f5b58a0bed99312c57abb59181376 (diff)
Applied coding style
Diffstat (limited to 'Jellyfin.Server.Implementations/MediaSegments/MediaSegmentManager.cs')
-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 151b616f7..d0f41c6fa 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()
- .ToImmutableArray()
+ .ToArray()
.Select(Map);
}