Browse Source

Merge pull request #7136 from sweco-secfha/torrentpotato_search_year

Add year to search param for torrentpotato
pull/7084/merge
Ruud Burger 9 years ago
committed by GitHub
parent
commit
ecec0db5c7
  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'],
'passkey': host['pass_key'],
'imdbid': getIdentifier(media),
'search' : getTitle(media),
'search' : getTitle(media) + ' ' + str(media['info']['year']),
})
return '%s?%s' % (host['host'], arguments)

Loading…
Cancel
Save