remove .get() call from content

This commit is contained in:
jakeogh 2024-05-14 17:57:38 -07:00
parent 1a0cf3ced4
commit 4701ad6c2e
1 changed files with 3 additions and 3 deletions

View File

@ -3459,9 +3459,9 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
# 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']