mirror of
https://github.com/Radarr/Radarr
synced 2025-01-19 22:21:08 +00:00
Fixed: Show human readable sizes in manual search rejections
This commit is contained in:
parent
25f0f50bff
commit
2efed23450
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ public Decision IsSatisfiedBy(RemoteEpisode subject, SearchCriteriaBase searchCr
|
||||||
if (subject.Release.Size > maxSize)
|
if (subject.Release.Size > maxSize)
|
||||||
{
|
{
|
||||||
_logger.Debug("Item: {0}, Size: {1} is greater than maximum allowed size ({2}), rejecting.", subject, subject.Release.Size, maxSize);
|
_logger.Debug("Item: {0}, Size: {1} is greater than maximum allowed size ({2}), rejecting.", subject, subject.Release.Size, maxSize);
|
||||||
return Decision.Reject("{0} is larger than maximum allowed: {1}", subject.Release.Size, maxSize);
|
return Decision.Reject("{0} is larger than maximum allowed: {1}", subject.Release.Size.SizeSuffix(), maxSize.SizeSuffix());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue