mirror of https://github.com/Sonarr/Sonarr
New: Improve messaging for rejected quality upgrades
This commit is contained in:
parent
8ab040f612
commit
9263fc1564
|
@ -48,8 +48,8 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Specifications
|
||||||
|
|
||||||
if (qualityCompare < 0)
|
if (qualityCompare < 0)
|
||||||
{
|
{
|
||||||
_logger.Debug("This file isn't a quality upgrade for all episodes. Skipping {0}", localEpisode.Path);
|
_logger.Debug("This file isn't a quality upgrade for all episodes. New Quality is {0}. Skipping {1}", localEpisode.Quality.Quality, localEpisode.Path);
|
||||||
return Decision.Reject("Not an upgrade for existing episode file(s)");
|
return Decision.Reject("Not an upgrade for existing episode file(s). New Quality is {0}", localEpisode.Quality.Quality);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Same quality, is not a language upgrade, propers/repacks are preferred and it is not a revision update
|
// Same quality, is not a language upgrade, propers/repacks are preferred and it is not a revision update
|
||||||
|
|
Loading…
Reference in New Issue