Browse Source

Fix build after backports due to EFCore change (#13488)

Bond-009 4 months ago
parent
commit
d376b5fbc7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Jellyfin.LiveTv/Guide/GuideManager.cs

+ 1 - 1
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)