Fixed addic7ed subtitles search query to return all languages instead of relying on filter defined in addic7ed profiles.

pull/1722/head v1.0.3-beta.28
3klips 2 years ago committed by GitHub
parent c6e7701091
commit a22bb0fd12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -430,7 +430,7 @@ class Addic7edProvider(_Addic7edProvider):
# get the page of the season of the show
logger.info('Getting the page of show id %d, season %d', show_id, season)
r = self.session.get(self.server_url + 'ajax_loadShow.php',
params={'show': show_id, 'season': season},
params={'show': show_id, 'season': season, 'langs': '|'},
timeout=10,
headers={
"referer": "%sshow/%s" % (self.server_url, show_id),

Loading…
Cancel
Save