Browse Source

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

master-ytdl-org
Sergey M․ 7 years ago
parent
commit
6554708252
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/kaltura.py

+ 1
- 1
youtube_dl/extractor/kaltura.py 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


Loading…
Cancel
Save