diff options
| author | Bond-009 <bond.009@outlook.com> | 2022-11-05 11:54:36 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-05 11:54:36 +0100 |
| commit | f738e7c051d92ade9c6226b144089903aaf7a1a4 (patch) | |
| tree | 08063c378ba619b458a4c4f97f1372a3a08578b1 | |
| parent | 8653625791cc4997cd3e7541a995b2f6735b6a8f (diff) | |
| parent | 55c115b7b11c360a0394d43ff1313e607461ef3a (diff) | |
Merge pull request #8696 from crobibero/livetv-null-title
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/Listings/XmlTvListingsProvider.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/LiveTv/Listings/XmlTvListingsProvider.cs b/Emby.Server.Implementations/LiveTv/Listings/XmlTvListingsProvider.cs index 7570a2bcf..e35ba15f6 100644 --- a/Emby.Server.Implementations/LiveTv/Listings/XmlTvListingsProvider.cs +++ b/Emby.Server.Implementations/LiveTv/Listings/XmlTvListingsProvider.cs @@ -165,7 +165,7 @@ namespace Emby.Server.Implementations.LiveTv.Listings HasImage = !string.IsNullOrEmpty(program.Icon?.Source), OfficialRating = string.IsNullOrEmpty(program.Rating?.Value) ? null : program.Rating.Value, CommunityRating = program.StarRating, - SeriesId = program.Episode == null ? null : program.Title.GetMD5().ToString("N", CultureInfo.InvariantCulture) + SeriesId = program.Episode == null ? null : program.Title?.GetMD5().ToString("N", CultureInfo.InvariantCulture) }; if (string.IsNullOrWhiteSpace(program.ProgramId)) |
