mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
[youtube] Simplify automatic captions URL check (Closes #8287)
This commit is contained in:
parent
582f4f834e
commit
51290d8457
1 changed files with 2 additions and 2 deletions
|
@ -964,8 +964,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
|||
try:
|
||||
args = player_config['args']
|
||||
caption_url = args['ttsurl']
|
||||
if caption_url is None or caption_url == "" or caption_url.isspace():
|
||||
self._downloader.report_warning("No automatic captions")
|
||||
if not caption_url:
|
||||
self._downloader.report_warning(err_msg)
|
||||
return {}
|
||||
timestamp = args['timestamp']
|
||||
# We get the available subtitles
|
||||
|
|
Loading…
Reference in a new issue