Browse Source

Add year to x264 provider search

pull/69/head
Ruud 14 years ago
parent
commit
ab5d9e29d6
  1. 2
      couchpotato/core/providers/nzb/x264/main.py

2
couchpotato/core/providers/nzb/x264/main.py

@ -23,7 +23,7 @@ class X264(NZBProvider):
if self.isDisabled() or not self.isAvailable(self.urls['search']) or not quality.get('hd', False):
return results
q = '%s %s' % (movie['library']['titles'][0]['title'], quality.get('identifier'))
q = '%s %s %s' % (movie['library']['titles'][0]['title'], movie['library']['year'], quality.get('identifier'))
url = self.urls['search'] % quote_plus(q)
cache_key = 'x264.%s' % q

Loading…
Cancel
Save