mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: (Nebulance) Handle null poster
This commit is contained in:
@@ -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,
|
||||||
|
Reference in New Issue
Block a user