aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2025-02-04 00:37:39 +0100
committerGitHub <noreply@github.com>2025-02-03 16:37:39 -0700
commitd376b5fbc7cf3ae7440a606a9e885d70605956bd (patch)
treecc48c10d9a4f2ffc1085e7fe7d0a738323d29906
parentc77b3fa25810f3824ad3ad4568fff390326b2a51 (diff)
Fix build after backports due to EFCore change (#13488)
-rw-r--r--src/Jellyfin.LiveTv/Guide/GuideManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Jellyfin.LiveTv/Guide/GuideManager.cs b/src/Jellyfin.LiveTv/Guide/GuideManager.cs
index 05d2ae41d..b75cc0fb2 100644
--- a/src/Jellyfin.LiveTv/Guide/GuideManager.cs
+++ b/src/Jellyfin.LiveTv/Guide/GuideManager.cs
@@ -277,7 +277,7 @@ public class GuideManager : IGuideManager
if (newPrograms.Count > 0)
{
var newProgramDtos = programs.Where(b => newPrograms.Contains(b.Id)).ToList();
- _libraryManager.CreateItems(newProgramDtos, null, cancellationToken);
+ _libraryManager.CreateOrUpdateItems(newProgramDtos, null, cancellationToken);
}
if (updatedPrograms.Count > 0)