Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/f07a6c3c3ea13f0f1b60c420a6a73cfb875873aa
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
7 additions and
1 deletions
@ -35,8 +35,14 @@ namespace Jellyfin.Server.Migrations.Routines
_logger . LogInformation ( "Removing 'RemoveDownloadImagesInAdvance' settings in all the libraries" ) ;
foreach ( var virtualFolder in virtualFolders )
{
// Some virtual folders don't have a proper item id.
if ( ! Guid . TryParse ( virtualFolder . ItemId , out var folderId ) )
{
continue ;
}
var libraryOptions = virtualFolder . LibraryOptions ;
var collectionFolder = ( CollectionFolder ) _libraryManager . GetItemById ( virtualFolder . ItemId ) ;
var collectionFolder = ( CollectionFolder ) _libraryManager . GetItemById ( folder Id) ;
// The property no longer exists in LibraryOptions, so we just re-save the options to get old data removed.
collectionFolder . UpdateLibraryOptions ( libraryOptions ) ;
_logger . LogInformation ( "Removed from '{VirtualFolder}'" , virtualFolder . Name ) ;