diff options
| author | Bond-009 <bond.009@outlook.com> | 2025-02-04 00:37:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-03 16:37:39 -0700 |
| commit | d376b5fbc7cf3ae7440a606a9e885d70605956bd (patch) | |
| tree | cc48c10d9a4f2ffc1085e7fe7d0a738323d29906 /src | |
| parent | c77b3fa25810f3824ad3ad4568fff390326b2a51 (diff) | |
Fix build after backports due to EFCore change (#13488)
Diffstat (limited to 'src')
| -rw-r--r-- | src/Jellyfin.LiveTv/Guide/GuideManager.cs | 2 |
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) |
