diff options
| author | Bond-009 <bond.009@outlook.com> | 2025-02-15 19:21:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-15 19:21:16 +0100 |
| commit | 66e571cd9761bea26ce3c7d4626150aac09ef7af (patch) | |
| tree | 2ec73e8d86a0c7a063d674c7f14246765be6e663 /Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs | |
| parent | 2db0750abbcb3994a6d6163652566fe5e0e7c7b7 (diff) | |
| parent | debc4997119d4ee2382ed2b31a2d4e38deace1d9 (diff) | |
Merge pull request #13553 from crobibero/efcore-livetv-epg
Change BaseItemEntity ChannelId to nullable Guid
Diffstat (limited to 'Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs')
| -rw-r--r-- | Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs index 632ff9307..3289484f9 100644 --- a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs +++ b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs @@ -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; } |
