mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-25 06:17:26 -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,
|
Title = title,
|
||||||
Guid = details,
|
Guid = details,
|
||||||
InfoUrl = details,
|
InfoUrl = details,
|
||||||
PosterUrl = poster.AbsoluteUri,
|
PosterUrl = poster?.AbsoluteUri ?? null,
|
||||||
DownloadUrl = link,
|
DownloadUrl = link,
|
||||||
Categories = new List<IndexerCategory> { TvCategoryFromQualityParser.ParseTvShowQuality(title) },
|
Categories = new List<IndexerCategory> { TvCategoryFromQualityParser.ParseTvShowQuality(title) },
|
||||||
Size = size,
|
Size = size,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue