From cd2e04347263441d86e184ae2821434b8e46437a Mon Sep 17 00:00:00 2001 From: JPVenson Date: Sun, 20 Oct 2024 09:43:40 +0000 Subject: [PATCH] Readded old library move in migration --- Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs index c88a609b67..824c72e55b 100644 --- a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs +++ b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs @@ -247,9 +247,9 @@ public class MigrateLibraryDb : IMigrationRoutine _logger.LogInformation("Saving AncestorIds took {0}.", stepElapsed); connection.Close(); - // _logger.LogInformation("Migration of the Library.db done."); - // _logger.LogInformation("Move {0} to {1}.", libraryDbPath, libraryDbPath + ".old"); - // File.Move(libraryDbPath, libraryDbPath + ".old"); + _logger.LogInformation("Migration of the Library.db done."); + _logger.LogInformation("Move {0} to {1}.", libraryDbPath, libraryDbPath + ".old"); + File.Move(libraryDbPath, libraryDbPath + ".old"); _logger.LogInformation("Migrating Library db took {0}.", stopwatch.Elapsed);