mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 22:13:06 +03:00
Change BaseItemEntity ChannelId to nullable Guid
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user