mirror of
https://github.com/Radarr/Radarr
synced 2026-03-03 11:04:32 +01:00
Handle empty Episode list during decision maker.
This commit is contained in:
parent
a5977f2752
commit
d1ced600a1
1 changed files with 4 additions and 0 deletions
|
|
@ -84,6 +84,10 @@ public RemoteEpisode Map(ParsedEpisodeInfo parsedEpisodeInfo, int tvdbId, int tv
|
|||
{
|
||||
remoteEpisode.Episodes = GetEpisodes(parsedEpisodeInfo, series, true, searchCriteria);
|
||||
}
|
||||
else
|
||||
{
|
||||
remoteEpisode.Episodes = new List<Episode>();
|
||||
}
|
||||
|
||||
return remoteEpisode;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue