Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/3037c18e3105eec1b9fd1d1a35e6c41b2c7c384a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
4 deletions
@ -134,7 +134,7 @@ namespace MediaBrowser.Controller.Entities
{
List < BaseItem > newChildren ;
lock ( _c hildrenSyncLock)
lock ( C hildrenSyncLock)
{
newChildren = _children . ToList ( ) ;
@ -477,7 +477,7 @@ namespace MediaBrowser.Controller.Entities
/// <summary>
/// The _children sync lock
/// </summary>
pr ivate object _c hildrenSyncLock = new object ( ) ;
pr otected object C hildrenSyncLock = new object ( ) ;
/// <summary>
/// Gets or sets the actual children.
/// </summary>
@ -486,7 +486,7 @@ namespace MediaBrowser.Controller.Entities
{
get
{
LazyInitializer . EnsureInitialized ( ref _children , ref _childrenInitialized , ref _c hildrenSyncLock, LoadChildrenInternal ) ;
LazyInitializer . EnsureInitialized ( ref _children , ref _childrenInitialized , ref C hildrenSyncLock, LoadChildrenInternal ) ;
return _children ;
}
}
@ -711,7 +711,7 @@ namespace MediaBrowser.Controller.Entities
if ( actualRemovals . Count > 0 )
{
lock ( _c hildrenSyncLock)
lock ( C hildrenSyncLock)
{
_children = new ConcurrentBag < BaseItem > ( _children . Except ( actualRemovals ) ) ;
}