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 # new comment format
else: else:
view_model = traverse_obj(comment_thread_renderer, ('commentViewModel', 'commentViewModel')) view_model = (
if not view_model: traverse_obj(comment_thread_renderer, ('commentViewModel', 'commentViewModel', {dict}))
view_model = content.get('commentViewModel') or traverse_obj(content, ('commentViewModel', {dict})))
if not view_model: if not view_model:
continue continue
comment_id = view_model['commentId'] comment_id = view_model['commentId']