From a3442673e3f38089e723fa584c5b33465e7247a5 Mon Sep 17 00:00:00 2001 From: rembo10 Date: Tue, 1 Jan 2013 07:21:03 -0500 Subject: [PATCH] Fix for searcher not firing off if only nzbx was checked --- headphones/searcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/searcher.py b/headphones/searcher.py index ecd55c35..9a25371c 100644 --- a/headphones/searcher.py +++ b/headphones/searcher.py @@ -109,7 +109,7 @@ def searchforalbum(albumid=None, new=False, lossless=False): for result in results: foundNZB = "none" - if (headphones.NZBMATRIX or headphones.NEWZNAB or headphones.NZBSORG or headphones.NEWZBIN) and (headphones.SAB_HOST or headphones.BLACKHOLE): + if (headphones.NZBMATRIX or headphones.NEWZNAB or headphones.NZBSORG or headphones.NEWZBIN or headphones.NZBX) and (headphones.SAB_HOST or headphones.BLACKHOLE): if result['Status'] == "Wanted Lossless": foundNZB = searchNZB(result['AlbumID'], new, losslessOnly=True) else: