diff options
author | morpheus65535 <[email protected]> | 2021-06-14 19:59:26 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2021-06-14 19:59:26 -0400 |
commit | 26e978b14b2289fa189a789f6f2c03570c55eb08 (patch) | |
tree | 38d8d3db3a838d333fba9a31c35f4e5d2bef0369 | |
parent | 11b6a355f5d7892ef661c3a04aaf704f6f93dfde (diff) | |
download | bazarr-26e978b14b2289fa189a789f6f2c03570c55eb08.tar.gz bazarr-26e978b14b2289fa189a789f6f2c03570c55eb08.zip |
Fixed Regielive provider #1438v0.9.6-beta.26
-rw-r--r-- | libs/subliminal_patch/providers/regielive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/subliminal_patch/providers/regielive.py b/libs/subliminal_patch/providers/regielive.py index 357ef89d9..16bbdf2b0 100644 --- a/libs/subliminal_patch/providers/regielive.py +++ b/libs/subliminal_patch/providers/regielive.py @@ -91,7 +91,7 @@ class RegieLiveProvider(Provider): response = self.session.post(self.url, data=payload, headers=self.headers) logger.info(response.json()) subtitles = [] - if response.json()['cod'] == '200': + if response.json()['cod'] == 200: results_subs = response.json()['rezultate'] for film in results_subs: for sub in results_subs[film]['subtitrari']: |