aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2025-02-15 19:21:16 +0100
committerGitHub <noreply@github.com>2025-02-15 19:21:16 +0100
commit66e571cd9761bea26ce3c7d4626150aac09ef7af (patch)
tree2ec73e8d86a0c7a063d674c7f14246765be6e663 /Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs
parent2db0750abbcb3994a6d6163652566fe5e0e7c7b7 (diff)
parentdebc4997119d4ee2382ed2b31a2d4e38deace1d9 (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.cs2
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;
}