From 635a6db6583c16681b05621badd18c1799fb4b2a Mon Sep 17 00:00:00 2001 From: flightlevel Date: Wed, 24 Aug 2016 22:56:43 +1000 Subject: [PATCH] Add Movie Title to TorrentPotato Requests As discussed here https://github.com/Jackett/Jackett/issues/462#issuecomment-241972123 only the IMDB ID was being transmitted, no movie title --- couchpotato/core/media/movie/providers/torrent/torrentpotato.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/couchpotato/core/media/movie/providers/torrent/torrentpotato.py b/couchpotato/core/media/movie/providers/torrent/torrentpotato.py index 6757353..e22f4e7 100644 --- a/couchpotato/core/media/movie/providers/torrent/torrentpotato.py +++ b/couchpotato/core/media/movie/providers/torrent/torrentpotato.py @@ -1,5 +1,6 @@ from couchpotato.core.helpers.encoding import tryUrlencode from couchpotato.core.helpers.variable import getIdentifier +from couchpotato.core.helpers.variable import getTitle from couchpotato.core.logger import CPLog from couchpotato.core.media._base.providers.torrent.torrentpotato import Base from couchpotato.core.media.movie.providers.base import MovieProvider @@ -16,5 +17,6 @@ class TorrentPotato(MovieProvider, Base): 'user': host['name'], 'passkey': host['pass_key'], 'imdbid': getIdentifier(media), + 'search' : getTitle(media), }) return '%s?%s' % (host['host'], arguments)