1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-11-10 19:35:08 -05:00

Fixes backlog for newznab providers

This commit is contained in:
Adam 2014-09-10 23:27:28 +08:00
parent 88479e7e1b
commit 5d1ae90565

View File

@ -259,13 +259,17 @@ class NewznabProvider(generic.NZBProvider):
if search_params:
params.update(search_params)
if 'rid' not in search_params and 'q' not in search_params:
logger.log("Error no rid or search term given. Report to forums with a full debug log")
return []
if self.needs_auth and self.key:
params['apikey'] = self.key
results = []
offset = total = 0
while total >= (offset or 1000):
while (total >= offset) and (offset < 1000):
search_url = self.url + 'api?' + urllib.urlencode(params)
logger.log(u"Search url: " + search_url, logger.DEBUG)
data = self.cache.getRSSFeed(search_url)