mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 14:03:03 +03:00
Used enum value for ItemValueType
This commit is contained in:
@@ -227,7 +227,7 @@ public class MigrateLibraryDb : IMigrationRoutine
|
||||
return new ItemValue
|
||||
{
|
||||
ItemId = reader.GetGuid(0),
|
||||
Type = reader.GetInt32(1),
|
||||
Type = (ItemValueType)reader.GetInt32(1),
|
||||
Value = reader.GetString(2),
|
||||
CleanValue = reader.GetString(3),
|
||||
Item = null!
|
||||
|
||||
Reference in New Issue
Block a user