Fix the record series button missing on many programs (port of #12398) (#12481)

Co-authored-by: grumpycat <bryan.pauquette@gmail.com>
This commit is contained in:
Bond-009 2024-08-20 19:13:37 +02:00 committed by GitHub
parent be949af59e
commit c1e52df0b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)),