mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Fixed order of column selects
This commit is contained in:
parent
6efcd6b873
commit
b0b14e6edd
@ -624,8 +624,8 @@ public class MigrateLibraryDb : IMigrationRoutine
|
|||||||
{
|
{
|
||||||
var entity = new BaseItemEntity()
|
var entity = new BaseItemEntity()
|
||||||
{
|
{
|
||||||
Type = reader.GetString(0),
|
Id = reader.GetGuid(0),
|
||||||
Id = reader.GetGuid(1)
|
Type = reader.GetString(1),
|
||||||
};
|
};
|
||||||
|
|
||||||
var index = 2;
|
var index = 2;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user