Updated all instances of ImmutableList to ImmutableArray

This commit is contained in:
JPVenson
2024-10-28 14:34:29 +00:00
parent f80fa96453
commit 0639758abd
5 changed files with 9 additions and 9 deletions

View File

@@ -154,7 +154,7 @@ public class MediaSegmentManager : IMediaSegmentManager
return query
.OrderBy(e => e.StartTicks)
.AsNoTracking()
.ToImmutableList()
.ToImmutableArray()
.Select(Map);
}