Renamed to skipHistory to make it more clear.
This commit is contained in:
parent
20c1639ada
commit
34206fc308
|
@ -71,11 +71,11 @@ namespace NzbDrone.Core.Providers
|
||||||
/// Comprehensive check on whether or not this episode is needed.
|
/// Comprehensive check on whether or not this episode is needed.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name = "parsedReport">Episode that needs to be checked</param>
|
/// <param name = "parsedReport">Episode that needs to be checked</param>
|
||||||
/// <param name="manualSearch">False unless called by a manual search job</param>
|
/// <param name="skipHistory">False unless called by a manual search job</param>
|
||||||
/// <returns>Whether or not the file quality meets the requirements </returns>
|
/// <returns>Whether or not the file quality meets the requirements </returns>
|
||||||
/// <remarks>for multi episode files, all episodes need to meet the requirement
|
/// <remarks>for multi episode files, all episodes need to meet the requirement
|
||||||
/// before the report is downloaded</remarks>
|
/// before the report is downloaded</remarks>
|
||||||
public virtual bool IsQualityNeeded(EpisodeParseResult parsedReport, bool manualSearch = false)
|
public virtual bool IsQualityNeeded(EpisodeParseResult parsedReport, bool skipHistory = false)
|
||||||
{
|
{
|
||||||
Logger.Trace("Checking if report meets quality requirements. {0}", parsedReport.Quality);
|
Logger.Trace("Checking if report meets quality requirements. {0}", parsedReport.Quality);
|
||||||
if (!parsedReport.Series.QualityProfile.Allowed.Contains(parsedReport.Quality.QualityType))
|
if (!parsedReport.Series.QualityProfile.Allowed.Contains(parsedReport.Quality.QualityType))
|
||||||
|
@ -101,7 +101,7 @@ namespace NzbDrone.Core.Providers
|
||||||
}
|
}
|
||||||
|
|
||||||
//Checking History (If not a manual search)
|
//Checking History (If not a manual search)
|
||||||
if (!manualSearch)
|
if (!skipHistory)
|
||||||
{
|
{
|
||||||
var bestQualityInHistory = _historyProvider.GetBestQualityInHistory(episode.EpisodeId);
|
var bestQualityInHistory = _historyProvider.GetBestQualityInHistory(episode.EpisodeId);
|
||||||
if(bestQualityInHistory != null)
|
if(bestQualityInHistory != null)
|
||||||
|
|
Loading…
Reference in New Issue