mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-16 21:33:19 +00:00
remove .get() call from content
This commit is contained in:
parent
1a0cf3ced4
commit
4701ad6c2e
|
@ -3459,9 +3459,9 @@ def extract_thread(contents, entity_payloads):
|
|||
|
||||
# new comment format
|
||||
else:
|
||||
view_model = traverse_obj(comment_thread_renderer, ('commentViewModel', 'commentViewModel'))
|
||||
if not view_model:
|
||||
view_model = content.get('commentViewModel')
|
||||
view_model = (
|
||||
traverse_obj(comment_thread_renderer, ('commentViewModel', 'commentViewModel', {dict}))
|
||||
or traverse_obj(content, ('commentViewModel', {dict})))
|
||||
if not view_model:
|
||||
continue
|
||||
comment_id = view_model['commentId']
|
||||
|
|
Loading…
Reference in a new issue