Fixed: Rejection message for cutoff already met in Manual Search.

This commit is contained in:
Taloth Saldono 2014-11-01 12:40:59 +01:00
parent f154e4236f
commit e6494ba229
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}