From dafa70b7e30493dcce4625ed51de16033ea18de4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joel=20K=C3=A5berg?= Date: Thu, 19 Dec 2013 21:41:17 +0100 Subject: [PATCH] fix seed/lech score formula, fix #2605 --- couchpotato/core/plugins/score/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/core/plugins/score/main.py b/couchpotato/core/plugins/score/main.py index 54b6ca31..1164ee19 100644 --- a/couchpotato/core/plugins/score/main.py +++ b/couchpotato/core/plugins/score/main.py @@ -35,8 +35,8 @@ class Score(Plugin): # Torrents only if nzb.get('seeders'): try: - score += nzb.get('seeders') / 5 - score += nzb.get('leechers') / 10 + score += nzb.get('seeders') * 100 / 5 + score += nzb.get('leechers') * 100 / 10 except: pass