chore: fix typo

This commit is contained in:
luan.lrt4@gmail.com
2022-04-22 00:32:43 -03:00
parent b175e02f6d
commit 02ece1ddda

View File

@@ -305,7 +305,7 @@ class Parser {
};
comment.getReplies = async () => {
if (comment.metadata.reply_count === 0) throw new Utils.InnertubeError('Tis comment has no replies', comment);
if (comment.metadata.reply_count === 0) throw new Utils.InnertubeError('This comment has no replies', comment);
const payload = Proto.encodeCommentRepliesParams(this.args.video_id, comment.metadata.id);
const next = await Actions.next(this.session, { continuation_token: payload });
return parseComments(next.data);
@@ -545,4 +545,4 @@ class Parser {
}
}
module.exports = Parser;
module.exports = Parser;