mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 22:13:06 +03:00
Fixed order of column selects
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user