aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2025-02-13 20:17:25 -0700
committerCody Robibero <cody@robibe.ro>2025-02-13 20:17:25 -0700
commitdebc4997119d4ee2382ed2b31a2d4e38deace1d9 (patch)
tree3d5497009b01e968010db711eca266665079e138 /Jellyfin.Server
parentb2a2fd6fcc0df356f29ddd1898c64ad87099dd18 (diff)
Change BaseItemEntity ChannelId to nullable Guid
Diffstat (limited to 'Jellyfin.Server')
-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;
}