Private GIT

Skip to content
Snippets Groups Projects
Commit 5f78c2cb authored by Sarakha63's avatar Sarakha63
Browse files

corrected binsearch to avoid empty nzbs

parent 29abcbcf
Branches
Tags
No related merge requests found
......@@ -6,7 +6,7 @@
<path>/Sick-Beard/sickbeard</path>
</pydev_pathproperty>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.7</pydev_property>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Python 2.7</pydev_property>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
<pydev_pathproperty name="org.python.pydev.PROJECT_EXTERNAL_SOURCE_PATH">
<path>C:\Python27\imports\Cheetah\bin</path>
<path>C:\Python27\imports\Cheetah\lib\python\Cheetah</path>
......
......@@ -39,7 +39,7 @@ class BinNewzProvider(generic.NZBProvider):
self.supportsBacklog = True
self.nzbDownloaders = [ NZBIndex(), NZBClub(), BinSearch() ]
self.nzbDownloaders = [BinSearch(),NZBIndex(), NZBClub() ]
self.url = "http://www.binnews.in/"
......
......@@ -55,6 +55,6 @@ class BinSearch(NZBDownloader):
if foundName:
postData = urllib.urlencode({foundName: 'on', 'action': 'nzb'})
nzbURL = "http://binsearch.info/fcgi/nzb.fcgi?adv_age=&" + suffixURL
nzbURL = "https://binsearch.info/?adv_age=&" + suffixURL
return NZBPostURLSearchResult( self, nzbURL, postData, sizeInMegs, binSearchURL )
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment