mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 09:47:39 +00:00
EpisodeSearch will now notify if no download is found.
This commit is contained in:
parent
90e15dbcdf
commit
576f5c5c09
1 changed files with 5 additions and 8 deletions
|
@ -155,15 +155,12 @@ namespace NzbDrone.Core.Providers
|
||||||
Logger.Debug("Finished searching all indexers. Total {0}", reports.Count);
|
Logger.Debug("Finished searching all indexers. Total {0}", reports.Count);
|
||||||
notification.CurrentMessage = "Processing search results";
|
notification.CurrentMessage = "Processing search results";
|
||||||
|
|
||||||
|
if (ProcessSearchResults(notification, reports, series, episode.SeasonNumber, episode.EpisodeNumber).Count == 1)
|
||||||
|
return true;
|
||||||
|
|
||||||
//TODO:fix this so when search returns more than one episode
|
Logger.Warn("Unable to find {0} in any of indexers.", episode);
|
||||||
//TODO:-its populated with more than the original episode.
|
notification.CurrentMessage = String.Format("Unable to find {0} in any of indexers.", episode);
|
||||||
reports.ForEach(c =>
|
return false;
|
||||||
{
|
|
||||||
c.Series = series;
|
|
||||||
});
|
|
||||||
|
|
||||||
return (ProcessSearchResults(notification, reports, series, episode.SeasonNumber, episode.EpisodeNumber).Count == 1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<EpisodeParseResult> PerformSearch(ProgressNotification notification, Series series, int seasonNumber, IList<Episode> episodes = null)
|
public List<EpisodeParseResult> PerformSearch(ProgressNotification notification, Series series, int seasonNumber, IList<Episode> episodes = null)
|
||||||
|
|
Loading…
Reference in a new issue