From b0b14e6eddeb525b3c2b4668903d2cd362c5f71c Mon Sep 17 00:00:00 2001 From: JPVenson Date: Sun, 10 Nov 2024 18:01:51 +0000 Subject: [PATCH] Fixed order of column selects --- Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs index d5ab8bdb67..e0cec95908 100644 --- a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs +++ b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs @@ -624,8 +624,8 @@ public class MigrateLibraryDb : IMigrationRoutine { var entity = new BaseItemEntity() { - Type = reader.GetString(0), - Id = reader.GetGuid(1) + Id = reader.GetGuid(0), + Type = reader.GetString(1), }; var index = 2;