mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-24 22:37:06 -04: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 @@ namespace NzbDrone.Core.Parser
|
||||||
{
|
{
|
||||||
remoteEpisode.Episodes = GetEpisodes(parsedEpisodeInfo, series, true, searchCriteria);
|
remoteEpisode.Episodes = GetEpisodes(parsedEpisodeInfo, series, true, searchCriteria);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
remoteEpisode.Episodes = new List<Episode>();
|
||||||
|
}
|
||||||
|
|
||||||
return remoteEpisode;
|
return remoteEpisode;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue