mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Fixed enumerable
This commit is contained in:
parent
54a6a33c01
commit
fe9c6fb8ae
@ -183,8 +183,9 @@ public class MediaSegmentManager : IMediaSegmentManager
|
|||||||
return query
|
return query
|
||||||
.OrderBy(e => e.StartTicks)
|
.OrderBy(e => e.StartTicks)
|
||||||
.AsNoTracking()
|
.AsNoTracking()
|
||||||
.ToImmutableList()
|
.AsEnumerable()
|
||||||
.Select(Map);
|
.Select(Map)
|
||||||
|
.ToImmutableArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static MediaSegmentDto Map(MediaSegment segment)
|
private static MediaSegmentDto Map(MediaSegment segment)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user