mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
No longer checking history when doing a manual search.
This commit is contained in:
parent
926bdef527
commit
d1262f1ced
5 changed files with 56 additions and 19 deletions
|
@ -235,7 +235,7 @@ namespace NzbDrone.Core.Providers
|
|||
if (successes.Intersect(episodeParseResult.EpisodeNumbers).Count() > 0)
|
||||
continue;
|
||||
|
||||
if (_inventoryProvider.IsQualityNeeded(episodeParseResult))
|
||||
if (_inventoryProvider.IsQualityNeeded(episodeParseResult, true))
|
||||
{
|
||||
Logger.Debug("Found '{0}'. Adding to download queue.", episodeParseResult);
|
||||
try
|
||||
|
@ -286,7 +286,7 @@ namespace NzbDrone.Core.Providers
|
|||
if (!episodeParseResult.AirDate.HasValue || episodeParseResult.AirDate.Value.Date != airDate.Date)
|
||||
continue;
|
||||
|
||||
if (_inventoryProvider.IsQualityNeeded(episodeParseResult))
|
||||
if (_inventoryProvider.IsQualityNeeded(episodeParseResult, true))
|
||||
{
|
||||
Logger.Debug("Found '{0}'. Adding to download queue.", episodeParseResult);
|
||||
try
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue