diff options
| author | JPVenson <github@jpb.email> | 2024-10-10 18:30:08 +0000 |
|---|---|---|
| committer | JPVenson <github@jpb.email> | 2024-10-10 18:30:08 +0000 |
| commit | 9c5599f81bed8d0531a8c0856072a5739e3f8f87 (patch) | |
| tree | 77f18011d22da1f1758455ca9fafba8b5261d60e /Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs | |
| parent | 439a997fca67ff5fcbca38c87dfef5acf04e05e3 (diff) | |
Applied review comments
Diffstat (limited to 'Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs')
| -rw-r--r-- | Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs index 294c4e8a6..bad99c92f 100644 --- a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs +++ b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs @@ -29,7 +29,7 @@ public class MigrateLibraryDb : IMigrationRoutine { private const string DbFilename = "library.db"; - private readonly ILogger<MigrateUserDb> _logger; + private readonly ILogger<MigrateLibraryDb> _logger; private readonly IServerApplicationPaths _paths; private readonly IDbContextFactory<JellyfinDbContext> _provider; @@ -40,7 +40,7 @@ public class MigrateLibraryDb : IMigrationRoutine /// <param name="provider">The database provider.</param> /// <param name="paths">The server application paths.</param> public MigrateLibraryDb( - ILogger<MigrateUserDb> logger, + ILogger<MigrateLibraryDb> logger, IDbContextFactory<JellyfinDbContext> provider, IServerApplicationPaths paths) { |
