mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Fixed: Rejection message for quality mismatch
This commit is contained in:
parent
0719c83da4
commit
68440bba4d
@ -47,8 +47,8 @@ public Decision IsSatisfiedBy(LocalEpisode localEpisode, DownloadClientItem down
|
|||||||
|
|
||||||
if (qualityCompare != 0)
|
if (qualityCompare != 0)
|
||||||
{
|
{
|
||||||
_logger.Debug("Quality of file ({0}) does not match quality of grabbed history ({1})", localEpisode.Quality, grabbedEpisodeHistory.Quality);
|
_logger.Debug("Quality of file ({0}) does not match quality of grabbed release ({1})", localEpisode.Quality, grabbedEpisodeHistory.Quality);
|
||||||
return Decision.Reject("Not an upgrade for existing episode file(s)");
|
return Decision.Reject("Quality of file ({0}) not match quality of grabbed release ({1})", localEpisode.Quality, grabbedEpisodeHistory.Quality);
|
||||||
}
|
}
|
||||||
|
|
||||||
return Decision.Accept();
|
return Decision.Accept();
|
||||||
|
Loading…
Reference in New Issue
Block a user