Browse Source

Add year to search param for torrentpotato

pull/7136/head
Christopher Haglund 9 years ago
committed by GitHub
parent
commit
5b659f8593
  1. 2
      couchpotato/core/media/movie/providers/torrent/torrentpotato.py

2
couchpotato/core/media/movie/providers/torrent/torrentpotato.py

@ -17,6 +17,6 @@ class TorrentPotato(MovieProvider, Base):
'user': host['name'], 'user': host['name'],
'passkey': host['pass_key'], 'passkey': host['pass_key'],
'imdbid': getIdentifier(media), 'imdbid': getIdentifier(media),
'search' : getTitle(media), 'search' : getTitle(media) + ' ' + str(media['info']['year']),
}) })
return '%s?%s' % (host['host'], arguments) return '%s?%s' % (host['host'], arguments)

Loading…
Cancel
Save