mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
Fixed enumerable
This commit is contained in:
parent
54a6a33c01
commit
fe9c6fb8ae
1 changed files with 3 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue