mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 22:07:32 -04:00
Fixed: (Nebulance) Handle null poster
This commit is contained in:
parent
8bce43ac29
commit
51f8b1b5c4
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue