diff options
author | 3klips <[email protected]> | 2022-02-08 18:10:48 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-02-08 12:10:48 -0500 |
commit | a22bb0fd124f7951be4d328740a356c0e1951c9c (patch) | |
tree | ef546106a3d03dfb25003132c973ada251c31855 | |
parent | c6e7701091c7ee0dde9bc60f65a39cb802f76400 (diff) | |
download | bazarr-a22bb0fd124f7951be4d328740a356c0e1951c9c.tar.gz bazarr-a22bb0fd124f7951be4d328740a356c0e1951c9c.zip |
Fixed addic7ed subtitles search query to return all languages instead of relying on filter defined in addic7ed profiles.v1.0.3-beta.28
-rw-r--r-- | libs/subliminal_patch/providers/addic7ed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/subliminal_patch/providers/addic7ed.py b/libs/subliminal_patch/providers/addic7ed.py index dd8fe88c5..0a12e3033 100644 --- a/libs/subliminal_patch/providers/addic7ed.py +++ b/libs/subliminal_patch/providers/addic7ed.py @@ -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), |