Private GIT

Skip to content
Snippets Groups Projects
Commit 68135d79 authored by miigotu's avatar miigotu
Browse files

Merge branch 'hotfix-218'

parents 7d22648b de434cd6
No related branches found
No related tags found
No related merge requests found
...@@ -93,7 +93,7 @@ class BinSearchCache(tvcache.TVCache): ...@@ -93,7 +93,7 @@ class BinSearchCache(tvcache.TVCache):
self.setLastUpdate() self.setLastUpdate()
cl = [] cl = []
for group in ['alt.binaries.hdtv', 'alt.binaries.hdtv.x264', 'alt.binaries.tv', 'alt.binaries.tvseries', 'alt.binaries.teevee']: for group in ['alt.binaries.hdtv', 'alt.binaries.hdtv.x264', 'alt.binaries.tv', 'alt.binaries.tvseries']:
url = self.provider.url + 'rss.php?' url = self.provider.url + 'rss.php?'
urlArgs = {'max': 1000, 'g': group} urlArgs = {'max': 1000, 'g': group}
...@@ -103,7 +103,7 @@ class BinSearchCache(tvcache.TVCache): ...@@ -103,7 +103,7 @@ class BinSearchCache(tvcache.TVCache):
for item in self.getRSSFeed(url)['entries'] or []: for item in self.getRSSFeed(url)['entries'] or []:
ci = self._parseItem(item) ci = self._parseItem(item)
if ci is not None: if ci:
cl.append(ci) cl.append(ci)
if len(cl) > 0: if len(cl) > 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment