1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-24 17:01:38 +00:00

Error message for Size rejection fixed

This commit is contained in:
Mark McDowall 2013-01-22 18:10:34 -08:00
parent d7a012bb0b
commit 1596e8530f

View file

@ -63,7 +63,7 @@ public virtual bool IsSatisfiedBy(EpisodeParseResult subject)
//If the parsed size is greater than maxSize we don't want it
if (subject.Size > maxSize)
{
logger.Trace("Item: {0}, Size: {1} is greater than maximum allowed size ({1}), rejecting.", subject, subject.Size, maxSize);
logger.Trace("Item: {0}, Size: {1} is greater than maximum allowed size ({2}), rejecting.", subject, subject.Size, maxSize);
return false;
}