1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-17 02:29:32 +00:00

[kaltura] Fix typo in subtitles extraction (closes #13569)

This commit is contained in:
Sergey M․ 2017-07-05 23:20:50 +07:00
parent 0a2e1b2e30
commit 6554708252
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -324,7 +324,7 @@ class KalturaIE(InfoExtractor):
if captions:
for caption in captions.get('objects', []):
# Continue if caption is not ready
if f.get('status') != 2:
if caption.get('status') != 2:
continue
if not caption.get('id'):
continue