mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-07 02:03:07 +01:00
fix children null reference
This commit is contained in:
parent
4773bb65ce
commit
b1a345341d
1 changed files with 2 additions and 2 deletions
|
|
@ -513,7 +513,7 @@ namespace MediaBrowser.Controller.Entities
|
|||
/// <summary>
|
||||
/// The children
|
||||
/// </summary>
|
||||
private IReadOnlyList<BaseItem> _children;
|
||||
private IReadOnlyList<BaseItem> _children = new List<BaseItem>();
|
||||
/// <summary>
|
||||
/// The _children sync lock
|
||||
/// </summary>
|
||||
|
|
@ -1026,7 +1026,7 @@ namespace MediaBrowser.Controller.Entities
|
|||
throw new ArgumentNullException();
|
||||
}
|
||||
|
||||
var initialCount = _children == null ? 100 : _children.Count;
|
||||
var initialCount = _children.Count;
|
||||
var list = new List<BaseItem>(initialCount);
|
||||
|
||||
AddRecursiveChildrenInternal(user, includeLinkedChildren, list);
|
||||
|
|
|
|||
Loading…
Reference in a new issue