[Bilibili:comments] Fix infinite loop (#1423)

Closes #1412
Authored by: u-spec-png
pull/1430/head
u-spec-png 3 years ago committed by GitHub
parent ad64a2323f
commit 8e7ab2cf08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -376,8 +376,10 @@ class BiliBiliIE(InfoExtractor):
replies = traverse_obj(
self._download_json(
f'https://api.bilibili.com/x/v2/reply?pn={idx}&oid={video_id}&type=1&jsonp=jsonp&sort=2&_=1567227301685',
video_id, note=f'Extracting comments from page {idx}'),
('data', 'replies')) or []
video_id, note=f'Extracting comments from page {idx}', fatal=False),
('data', 'replies'))
if not replies:
return
for children in map(self._get_all_children, replies):
yield from children

Loading…
Cancel
Save