chore: v4.0.0 release

This commit is contained in:
LuanRT
2023-03-16 00:09:40 +00:00
parent 0a595e31f8
commit e4538e40e2
145 changed files with 2551 additions and 2266 deletions

View File

@@ -24,7 +24,7 @@ class CommentThread extends YTNode {
constructor(data: RawNode) {
super();
this.comment = Parser.parseItem<Comment>(data.comment, Comment);
this.comment_replies_data = Parser.parseItem<CommentReplies>(data.replies);
this.comment_replies_data = Parser.parseItem(data.replies, CommentReplies);
this.is_moderated_elq_comment = data.isModeratedElqComment;
this.has_replies = !!this.comment_replies_data;
}