From 76dd663bae70aef5e1f2ab55defce7d8b228b9d6 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 24 Jan 2015 00:38:03 -0800 Subject: [PATCH] Better message when rejecting episode if its not an upgrade --- .../DecisionEngine/Specifications/UpgradeDiskSpecification.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/DecisionEngine/Specifications/UpgradeDiskSpecification.cs b/src/NzbDrone.Core/DecisionEngine/Specifications/UpgradeDiskSpecification.cs index 86f52c408..3520f6d6a 100644 --- a/src/NzbDrone.Core/DecisionEngine/Specifications/UpgradeDiskSpecification.cs +++ b/src/NzbDrone.Core/DecisionEngine/Specifications/UpgradeDiskSpecification.cs @@ -26,7 +26,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications if (!_qualityUpgradableSpecification.IsUpgradable(subject.Series.Profile, file.Quality, subject.ParsedEpisodeInfo.Quality)) { - return Decision.Reject("Existing file on disk is of equal or higher quality: {0}", file.Quality); + return Decision.Reject("Quality for existing file on disk is of equal or higher preference: {0}", file.Quality); } }