mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-13 22:02:20 +01: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