diff --git a/couchpotato/core/plugins/score/main.py b/couchpotato/core/plugins/score/main.py index f6f3232c..f853be95 100644 --- a/couchpotato/core/plugins/score/main.py +++ b/couchpotato/core/plugins/score/main.py @@ -27,9 +27,9 @@ class Score(Plugin): score += sizeScore(nzb['size']) # Torrents only - if nzb.get('seeds'): + if nzb.get('seeders'): try: - score += nzb.get('seeds') / 5 + score += nzb.get('seeders') / 5 score += nzb.get('leechers') / 10 except: pass diff --git a/couchpotato/core/plugins/searcher/main.py b/couchpotato/core/plugins/searcher/main.py index 26f9eeab..6cc80e9d 100644 --- a/couchpotato/core/plugins/searcher/main.py +++ b/couchpotato/core/plugins/searcher/main.py @@ -297,7 +297,7 @@ class Searcher(Plugin): imdb_results = kwargs.get('imdb_results', False) retention = Env.setting('retention', section = 'nzb') - if nzb.get('seeds') is None and 0 < retention < nzb.get('age', 0): + if nzb.get('seeders') is None and 0 < retention < nzb.get('age', 0): log.info2('Wrong: Outside retention, age is %s, needs %s or lower: %s', (nzb['age'], retention, nzb['name'])) return False diff --git a/couchpotato/core/providers/torrent/kickasstorrents/main.py b/couchpotato/core/providers/torrent/kickasstorrents/main.py index e8c3cd16..f639cdd3 100644 --- a/couchpotato/core/providers/torrent/kickasstorrents/main.py +++ b/couchpotato/core/providers/torrent/kickasstorrents/main.py @@ -84,7 +84,7 @@ class KickAssTorrents(TorrentProvider): elif column_name is 'age': new['age'] = self.ageToDays(td.text) elif column_name is 'seeds': - new['seeds'] = tryInt(td.text) + new['seeders'] = tryInt(td.text) elif column_name is 'leechers': new['leechers'] = tryInt(td.text)