Update Jellyfin.Server/Migrations/Routines/MigrateDisplayPreferencesDb.cs

This commit is contained in:
Cody Robibero 2020-11-12 07:33:12 -07:00 committed by GitHub
parent 7375d70396
commit 1d059bc76b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,7 +98,7 @@ namespace Jellyfin.Server.Migrations.Routines
var existingUser = _userManager.GetUserById(dtoUserId);
if (existingUser == null)
{
_logger.LogWarning("User with ID {userId} does not exist in the database, skipping migration.", dtoUserId);
_logger.LogWarning("User with ID {UserId} does not exist in the database, skipping migration.", dtoUserId);
continue;
}