Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/5b93895c149cf4be5147c017fa24ded7024f4217
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
6 deletions
@ -72,10 +72,6 @@ namespace MediaBrowser.Server.Implementations.Library.Validators
var numComplete = 0 ;
var userLibraries = _userManager . Users
. Select ( i = > new Tuple < Guid , IHasArtist [ ] > ( i . Id , i . RootFolder . GetRecursiveChildren ( i ) . OfType < IHasArtist > ( ) . ToArray ( ) ) )
. ToArray ( ) ;
foreach ( var artist in allArtists )
{
cancellationToken . ThrowIfCancellationRequested ( ) ;
@ -110,9 +106,9 @@ namespace MediaBrowser.Server.Implementations.Library.Validators
// Populate counts of items
//SetItemCounts(artist, null, allItems.OfType<IHasArtist>());
foreach ( var lib in userLibraries )
foreach ( var user in _userManager . Users . ToArray ( ) )
{
SetItemCounts ( artist , lib. Item1 , lib . Item2 ) ;
SetItemCounts ( artist , user. Id , user . RootFolder . GetRecursiveChildren ( user ) . OfType < IHasArtist > ( ) . ToArray ( ) ) ;
}
numComplete + + ;