From d314a9b5b37ca03d357180699d406425949a2306 Mon Sep 17 00:00:00 2001 From: Ruud Date: Wed, 2 Jan 2013 14:11:11 +0100 Subject: [PATCH] Also check status on manual --- couchpotato/core/downloaders/nzbvortex/main.py | 2 +- couchpotato/core/downloaders/sabnzbd/main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/core/downloaders/nzbvortex/main.py b/couchpotato/core/downloaders/nzbvortex/main.py index d9078f8d..894cf0e4 100644 --- a/couchpotato/core/downloaders/nzbvortex/main.py +++ b/couchpotato/core/downloaders/nzbvortex/main.py @@ -39,7 +39,7 @@ class NZBVortex(Downloader): def getAllDownloadStatus(self): - if self.isDisabled(manual = False): + if self.isDisabled(manual = True): return False raw_statuses = self.call('nzb') diff --git a/couchpotato/core/downloaders/sabnzbd/main.py b/couchpotato/core/downloaders/sabnzbd/main.py index 567ea455..e3848e40 100644 --- a/couchpotato/core/downloaders/sabnzbd/main.py +++ b/couchpotato/core/downloaders/sabnzbd/main.py @@ -65,7 +65,7 @@ class Sabnzbd(Downloader): return False def getAllDownloadStatus(self): - if self.isDisabled(manual = False): + if self.isDisabled(manual = True): return False log.debug('Checking SABnzbd download status.')