aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2024-11-10 18:01:51 +0000
committerJPVenson <github@jpb.email>2024-11-10 18:01:51 +0000
commitb0b14e6eddeb525b3c2b4668903d2cd362c5f71c (patch)
treefc1b1272c90e06e61808d3a2e5c80cce6d44d938
parent6efcd6b873b698fe53eefb9277e32e077361ff3a (diff)
Fixed order of column selects
-rw-r--r--Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs
index d5ab8bdb6..e0cec9590 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;