mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-24 16:52:06 +00:00
Fixed Regielive provider #1438
This commit is contained in:
parent
11b6a355f5
commit
26e978b14b
1 changed files with 1 additions and 1 deletions
|
@ -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']:
|
||||
|
|
Loading…
Reference in a new issue