mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-24 23:13:10 +00:00
Fixed: Rejection message for cutoff already met in Manual Search.
This commit is contained in:
parent
f154e4236f
commit
e6494ba229
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
|
|||
if (!_qualityUpgradableSpecification.CutoffNotMet(subject.Series.Profile, file.Quality, subject.ParsedEpisodeInfo.Quality))
|
||||
{
|
||||
_logger.Debug("Cutoff already met, rejecting.");
|
||||
return Decision.Reject("Existing file meets cutoff: {0}", subject.Series.Profile);
|
||||
return Decision.Reject("Existing file meets cutoff: {0}", subject.Series.Profile.Value.Cutoff);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue