Fixed: (Nebulance) Handle null poster

pull/633/head
Qstick 3 years ago committed by GitHub
parent 8bce43ac29
commit 51f8b1b5c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -242,7 +242,7 @@ namespace NzbDrone.Core.Indexers.Definitions
Title = title,
Guid = details,
InfoUrl = details,
PosterUrl = poster.AbsoluteUri,
PosterUrl = poster?.AbsoluteUri ?? null,
DownloadUrl = link,
Categories = new List<IndexerCategory> { TvCategoryFromQualityParser.ParseTvShowQuality(title) },
Size = size,

Loading…
Cancel
Save