Browse Source

Don't give negative score for non matching size

pull/3234/head
Ruud 11 years ago
parent
commit
b56c897e4b
  1. 2
      couchpotato/core/plugins/quality/main.py

2
couchpotato/core/plugins/quality/main.py

@ -325,8 +325,6 @@ class QualityPlugin(Plugin):
if tryInt(quality['size_min']) <= tryInt(size) <= tryInt(quality['size_max']):
log.info2('Found %s via release size: %s MB < %s MB < %s MB', (quality['identifier'], quality['size_min'], size, quality['size_max']))
score += 5
else:
score -= 40
return score

Loading…
Cancel
Save