mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-04-09 10:23:44 +00:00
[ie/vk:uservideos] Fix extraction
Authored by: bashonly
This commit is contained in:
parent
75133bfd66
commit
86bf208c55
@ -561,7 +561,11 @@ class VKUserVideosIE(VKBaseIE):
|
||||
'oid': page_id,
|
||||
'section': section,
|
||||
})[0][section]
|
||||
count += video_list_json['count']
|
||||
new_count = video_list_json['count']
|
||||
if not new_count:
|
||||
self.to_screen(f'{page_id}: Skipping {total - count} unavailable videos')
|
||||
break
|
||||
count += new_count
|
||||
video_list = video_list_json['list']
|
||||
|
||||
def _real_extract(self, url):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user