1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

Fixed: Include releases that failed to parse in search results

This commit is contained in:
Mark McDowall
2019-10-07 09:38:11 -07:00
parent ffccc3be38
commit d41a2cad73
2 changed files with 27 additions and 4 deletions
@@ -113,6 +113,16 @@ namespace NzbDrone.Core.DecisionEngine
decision = GetDecisionForReport(remoteEpisode, searchCriteria);
}
}
if (parsedEpisodeInfo == null || parsedEpisodeInfo.SeriesTitle.IsNullOrWhiteSpace() && searchCriteria != null)
{
var remoteEpisode = new RemoteEpisode
{
Release = report
};
decision = new DownloadDecision(remoteEpisode, new Rejection("Unable to parse release"));
}
}
catch (Exception e)
{