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.

Merge pull request from crobibero/migration-guid

Don't die if folder doesn't have id
pull/4661/head
Claus Vium 4 years ago committed by GitHub
commit f07a6c3c3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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(folderId);
// 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);

Loading…
Cancel
Save