Browse Source

Merge pull request #6780 from flightlevel/patch-2

Add Movie Title to TorrentPotato Requests
pull/6884/head
Ruud Burger 9 years ago
committed by GitHub
parent
commit
3f70678b8a
  1. 2
      couchpotato/core/media/movie/providers/torrent/torrentpotato.py

2
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)

Loading…
Cancel
Save