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

This commit is contained in:
3klips 2022-02-08 18:10:48 +01:00 committed by GitHub
parent c6e7701091
commit a22bb0fd12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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),