mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-23 13:57:06 -04:00
Fixed: Roksbox SeriesImages can lead to NullRef
This commit is contained in:
parent
0eb7973ab0
commit
c10448af0b
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ namespace NzbDrone.Core.Extras.Metadata.Consumers.Roksbox
|
|||
if (image == null)
|
||||
{
|
||||
_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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue