Fixed: Roksbox SeriesImages can lead to NullRef
This commit is contained in:
parent
0eb7973ab0
commit
c10448af0b
|
@ -189,7 +189,7 @@ namespace NzbDrone.Core.Extras.Metadata.Consumers.Roksbox
|
||||||
if (image == null)
|
if (image == null)
|
||||||
{
|
{
|
||||||
_logger.Trace("Failed to find suitable Series image for series {0}.", series.Title);
|
_logger.Trace("Failed to find suitable Series image for series {0}.", series.Title);
|
||||||
return null;
|
return new List<ImageFileResult>();
|
||||||
}
|
}
|
||||||
|
|
||||||
var source = _mediaCoverService.GetCoverPath(series.Id, image.CoverType);
|
var source = _mediaCoverService.GetCoverPath(series.Id, image.CoverType);
|
||||||
|
|
Loading…
Reference in New Issue