1
0
Fork 0

[youtube] Fix error reporting of "Incomplete data"

Related: #4669
This commit is contained in:
pukkandan 2022-08-16 22:01:48 +05:30
commit 3ce2933693
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
2 changed files with 2 additions and 2 deletions

View file

@ -809,7 +809,7 @@ class YoutubeBaseInfoExtractor(InfoExtractor):
# Youtube sometimes sends incomplete data
# See: https://github.com/ytdl-org/youtube-dl/issues/28194
if not traverse_obj(response, *variadic(check_get_keys)):
retry.error = ExtractorError('Incomplete data received')
retry.error = ExtractorError('Incomplete data received', expected=True)
continue
return response