diff --git a/src/NzbDrone.Core/Parser/ParsingService.cs b/src/NzbDrone.Core/Parser/ParsingService.cs index 33f730cd39..096d849557 100644 --- a/src/NzbDrone.Core/Parser/ParsingService.cs +++ b/src/NzbDrone.Core/Parser/ParsingService.cs @@ -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(); + } return remoteEpisode; }