diff --git a/Jellyfin.Server/Migrations/Routines/FixAudioData.cs b/Jellyfin.Server/Migrations/Routines/FixAudioData.cs index 74f7e9c3e8..a202533692 100644 --- a/Jellyfin.Server/Migrations/Routines/FixAudioData.cs +++ b/Jellyfin.Server/Migrations/Routines/FixAudioData.cs @@ -55,8 +55,9 @@ namespace Jellyfin.Server.Migrations.Routines { try { + _logger.LogInformation("Backing up {Library} to {BackupPath}", DbFilename, bakPath); File.Copy(dbPath, bakPath); - _logger.LogInformation("Library database backed up to {BackupPath}", bakPath); + _logger.LogInformation("{Library} backed up to {BackupPath}", DbFilename, bakPath); break; } catch (Exception ex) @@ -80,7 +81,7 @@ namespace Jellyfin.Server.Migrations.Routines { IncludeItemTypes = [BaseItemKind.Audio], StartIndex = startIndex, - Limit = 100, + Limit = 5000, SkipDeserialization = true }) .Cast