mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-14 12:32:57 +01: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 @@ public IList<ReleaseInfo> ParseResponse(IndexerResponse indexerResponse)
|
|||
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…
Reference in a new issue