skip report if series title can't be parsed.

This commit is contained in:
Keivan Beigi
2013-06-28 13:23:41 -07:00
parent b56da336c0
commit 2ce5f6d416
3 changed files with 20 additions and 4 deletions
@@ -49,7 +49,7 @@ namespace NzbDrone.Core.DecisionEngine
{
var parsedEpisodeInfo = Parser.Parser.ParseTitle(report.Title);
if (parsedEpisodeInfo != null)
if (parsedEpisodeInfo != null && !string.IsNullOrWhiteSpace(parsedEpisodeInfo.SeriesTitle))
{
var remoteEpisode = _parsingService.Map(parsedEpisodeInfo);
remoteEpisode.Report = report;