浏览代码

Improved Logging

JPVenson 7 月之前
父节点
当前提交
cec4ad9b65
共有 1 个文件被更改,包括 6 次插入3 次删除
  1. 6 3
      Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs

+ 6 - 3
Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs

@@ -279,11 +279,14 @@ public class MigrateLibraryDb : IMigrationRoutine
         }
     }
 
-    private static (UserData? Data, string? LegacyUserDataKey) GetUserData(ImmutableArray<User> users, SqliteDataReader dto)
+    private (UserData? Data, string? LegacyUserDataKey) GetUserData(ImmutableArray<User> users, SqliteDataReader dto)
     {
         var indexOfUser = dto.GetInt32(1);
-        if (users.Length < indexOfUser)
+        var user = users.ElementAtOrDefault(indexOfUser);
+
+        if (user is null)
         {
+            _logger.LogError("Tried to find user with index '{Idx}' but there are only '{MaxIdx}' users.", indexOfUser, users.Length);
             return (null, null);
         }
 
@@ -292,7 +295,7 @@ public class MigrateLibraryDb : IMigrationRoutine
         return (new UserData()
         {
             ItemId = Guid.NewGuid(),
-            UserId = users.ElementAt(indexOfUser).Id,
+            UserId = user.Id,
             Rating = dto.IsDBNull(2) ? null : dto.GetDouble(2),
             Played = dto.GetBoolean(3),
             PlayCount = dto.GetInt32(4),