Change BaseItemEntity ChannelId to nullable Guid

This commit is contained in:
Cody Robibero
2025-02-13 20:17:25 -07:00
parent b2a2fd6fcc
commit debc499711
6 changed files with 1624 additions and 8 deletions

View File

@@ -678,7 +678,7 @@ public class MigrateLibraryDb : IMigrationRoutine
entity.EndDate = endDate;
}
if (reader.TryGetString(index++, out var guid))
if (reader.TryGetGuid(index++, out var guid))
{
entity.ChannelId = guid;
}