Browse Source

Update thepiratebay.py

Remove the quotes around the search string to allow for results to be returned
pull/7226/head
jasonlyle88 8 years ago
committed by GitHub
parent
commit
b76f201017
  1. 2
      couchpotato/core/media/movie/providers/torrent/thepiratebay.py

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

@ -21,7 +21,7 @@ class ThePirateBay(MovieProvider, Base):
def buildUrl(self, media, page, cats):
return (
tryUrlencode('"%s"' % fireEvent('library.query', media, single = True)),
tryUrlencode('%s' % fireEvent('library.query', media, single = True)),
page,
','.join(str(x) for x in cats)
)

Loading…
Cancel
Save