From 9d98759768956d6b1e7838483aa132a941950a47 Mon Sep 17 00:00:00 2001 From: Daniel Firu Date: Wed, 7 Nov 2012 12:06:24 -0800 Subject: [PATCH 1/2] Change nzbmatrix from http: to https: for so nzb request packets are not in clear text. --- data/interfaces/brink/config.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/interfaces/brink/config.html b/data/interfaces/brink/config.html index c9f9974d..55ffde67 100644 --- a/data/interfaces/brink/config.html +++ b/data/interfaces/brink/config.html @@ -299,7 +299,7 @@ -

DNZBMatrix

+

DNZBMatrix

From eca3c3d49c1df4dbc5065be3b4b27649b44cbd22 Mon Sep 17 00:00:00 2001 From: Daniel Firu Date: Tue, 13 Nov 2012 05:43:27 -0800 Subject: [PATCH 2/2] change http to https for search.py as well --- headphones/searcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/searcher.py b/headphones/searcher.py index 016a4894..7e61d937 100644 --- a/headphones/searcher.py +++ b/headphones/searcher.py @@ -209,7 +209,7 @@ def searchNZB(albumid=None, new=False, losslessOnly=False): "term": term } - searchURL = "http://rss.nzbmatrix.com/rss.php?" + urllib.urlencode(params) + searchURL = "https://rss.nzbmatrix.com/rss.php?" + urllib.urlencode(params) logger.info(u'Parsing results from NZBMatrix' % searchURL) try: data = urllib2.urlopen(searchURL, timeout=20).read()