diff options
| author | Bond-009 <bond.009@outlook.com> | 2024-08-20 13:43:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-20 13:43:16 +0200 |
| commit | 567adb8caab11e9cc394a4d54f49420ed37d7871 (patch) | |
| tree | 94e9a7f81225a0218093000147b2a60c7c31b333 | |
| parent | 98e5f560668d05bda0b69a95e44a7c67e1b47413 (diff) | |
| parent | 845ebc5e62dbd7cdb370c01d9fccd2991c4bda86 (diff) | |
Merge pull request #12398 from bpauquette/patch-5
Update XmlTvListingsProvider.cs to fix the record series button missing on many programs
| -rw-r--r-- | src/Jellyfin.LiveTv/Listings/XmlTvListingsProvider.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Jellyfin.LiveTv/Listings/XmlTvListingsProvider.cs b/src/Jellyfin.LiveTv/Listings/XmlTvListingsProvider.cs index cecc363f0..7dc30f727 100644 --- a/src/Jellyfin.LiveTv/Listings/XmlTvListingsProvider.cs +++ b/src/Jellyfin.LiveTv/Listings/XmlTvListingsProvider.cs @@ -167,7 +167,7 @@ namespace Jellyfin.LiveTv.Listings Overview = program.Description, ProductionYear = program.CopyrightDate?.Year, SeasonNumber = program.Episode.Series, - IsSeries = program.Episode.Series is not null, + IsSeries = program.Episode.Episode is not null, IsRepeat = program.IsPreviouslyShown && !program.IsNew, IsPremiere = program.Premiere is not null, IsKids = programCategories.Any(c => info.KidsCategories.Contains(c, StringComparison.OrdinalIgnoreCase)), |
