Fixed: (Nebulance) Handle null poster

This commit is contained in:
Qstick 2021-11-23 10:17:23 -06:00 committed by GitHub
parent 8bce43ac29
commit 51f8b1b5c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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