mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Changed from ImmuntableList to ImmutableArray
This commit is contained in:
parent
9342a6a9d6
commit
76df4c48bc
@ -131,13 +131,13 @@ namespace MediaBrowser.Controller.Entities.Movies
|
||||
public override IReadOnlyList<BaseItem> GetChildren(User user, bool includeLinkedChildren, InternalItemsQuery query)
|
||||
{
|
||||
var children = base.GetChildren(user, includeLinkedChildren, query);
|
||||
return Sort(children, user).ToImmutableList();
|
||||
return Sort(children, user).ToImmutableArray();
|
||||
}
|
||||
|
||||
public override IReadOnlyList<BaseItem> GetRecursiveChildren(User user, InternalItemsQuery query)
|
||||
{
|
||||
var children = base.GetRecursiveChildren(user, query);
|
||||
return Sort(children, user).ToImmutableList();
|
||||
return Sort(children, user).ToImmutableArray();
|
||||
}
|
||||
|
||||
public BoxSetInfo GetLookupInfo()
|
||||
|
Loading…
x
Reference in New Issue
Block a user