diff options
| author | sushilicious <*> | 2021-08-04 23:15:48 -0700 |
|---|---|---|
| committer | sushilicious <*> | 2021-08-04 23:15:48 -0700 |
| commit | 7fdef4b82b82cb882fd378bdad04420157fecae2 (patch) | |
| tree | 2067220218e64c76a581d1ffdb80383cef3f70c4 /Jellyfin.Server/Migrations/Routines/MigrateActivityLogDb.cs | |
| parent | 460fe76467031cd8dd89dff737575d2fc7310844 (diff) | |
| parent | 2521a13d7d8df3bfa5291386ba4389469f02ade8 (diff) | |
Merge branch 'master' of https://github.com/jellyfin/jellyfin into HEAD
Diffstat (limited to 'Jellyfin.Server/Migrations/Routines/MigrateActivityLogDb.cs')
| -rw-r--r-- | Jellyfin.Server/Migrations/Routines/MigrateActivityLogDb.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/MigrateActivityLogDb.cs b/Jellyfin.Server/Migrations/Routines/MigrateActivityLogDb.cs index 6048160c6..9e22978ae 100644 --- a/Jellyfin.Server/Migrations/Routines/MigrateActivityLogDb.cs +++ b/Jellyfin.Server/Migrations/Routines/MigrateActivityLogDb.cs @@ -92,7 +92,7 @@ namespace Jellyfin.Server.Migrations.Routines if (entry[6].SQLiteType != SQLiteType.Null && !Guid.TryParse(entry[6].ToString(), out guid)) { // This is not a valid Guid, see if it is an internal ID from an old Emby schema - _logger.LogWarning("Invalid Guid in UserId column: ", entry[6].ToString()); + _logger.LogWarning("Invalid Guid in UserId column: {Guid}", entry[6].ToString()); using var statement = userDbConnection.PrepareStatement("SELECT guid FROM LocalUsersv2 WHERE Id=@Id"); statement.TryBind("@Id", entry[6].ToString()); |
