[vimeo:album] Fix extraction for albums with number of videos multiple to page size (closes #28486)

pull/28510/head
Sergey M․ 3 years ago
parent fa6bf0a711
commit 7e79ba7dd6
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

@ -939,11 +939,15 @@ class VimeoAlbumIE(VimeoBaseInfoExtractor):
}
if hashed_pass:
query['_hashed_pass'] = hashed_pass
videos = self._download_json(
'https://api.vimeo.com/albums/%s/videos' % album_id,
album_id, 'Downloading page %d' % api_page, query=query, headers={
'Authorization': 'jwt ' + authorization,
})['data']
try:
videos = self._download_json(
'https://api.vimeo.com/albums/%s/videos' % album_id,
album_id, 'Downloading page %d' % api_page, query=query, headers={
'Authorization': 'jwt ' + authorization,
})['data']
except ExtractorError as e:
if isinstance(e.cause, compat_HTTPError) and e.cause.code == 400:
return
for video in videos:
link = video.get('link')
if not link:

Loading…
Cancel
Save