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
|
||||
.OrderBy(e => e.StartTicks)
|
||||
.AsNoTracking()
|
||||
.ToImmutableList()
|
||||
.Select(Map);
|
||||
.AsEnumerable()
|
||||
.Select(Map)
|
||||
.ToImmutableArray();
|
||||
}
|
||||
|
||||
private static MediaSegmentDto Map(MediaSegment segment)
|
||||
|
Loading…
x
Reference in New Issue
Block a user