Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/76df4c48bcc3f56d8a786fc349aa09543f7e2d9b You should set ROOT_URL correctly, otherwise the web may not work correctly.

Changed from ImmuntableList to ImmutableArray

pull/12798/head
JPVenson 5 months ago
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…
Cancel
Save