Applied review comments

This commit is contained in:
JPVenson
2024-10-10 18:30:08 +00:00
parent 439a997fca
commit 9c5599f81b
2 changed files with 23 additions and 27 deletions

View File

@@ -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)
{