Browse Source

NZBIndex: Search for year inside brackets. closes #1874

pull/1672/head
Ruud 12 years ago
parent
commit
d8f57963a1
  1. 2
      couchpotato/core/providers/nzb/nzbindex/main.py

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

@ -23,7 +23,7 @@ class NzbIndex(NZBProvider, RSS):
def _searchOnTitle(self, title, movie, quality, results):
q = '"%s %s"' % (title, movie['library']['year'])
q = '"%s %s" | "%s (%s)"' % (title, movie['library']['year'], title, movie['library']['year'])
arguments = tryUrlencode({
'q': q,
'age': Env.setting('retention', 'nzb'),

Loading…
Cancel
Save