mirror of
https://github.com/tubearchivist/tubearchivist.git
synced 2024-09-17 06:08:47 +00:00
temporary fix for is_favorited extraction error
This commit is contained in:
parent
094ccf4186
commit
103409770d
|
@ -120,7 +120,9 @@ class Comments:
|
|||
"comment_timestamp": comment["timestamp"],
|
||||
"comment_time_text": time_text,
|
||||
"comment_likecount": comment["like_count"],
|
||||
"comment_is_favorited": comment["is_favorited"],
|
||||
"comment_is_favorited": comment.get(
|
||||
"is_favorited"
|
||||
), # temporary fix for yt-dlp upstream issue 7389
|
||||
"comment_author": comment["author"],
|
||||
"comment_author_id": comment["author_id"],
|
||||
"comment_author_thumbnail": comment["author_thumbnail"],
|
||||
|
|
Loading…
Reference in New Issue
Block a user