From 02ece1ddda2e360873dae93d2431494d55b262a5 Mon Sep 17 00:00:00 2001 From: "luan.lrt4@gmail.com" Date: Fri, 22 Apr 2022 00:32:43 -0300 Subject: [PATCH] chore: fix typo --- lib/parser/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/parser/index.js b/lib/parser/index.js index 97171486..23bf2c28 100644 --- a/lib/parser/index.js +++ b/lib/parser/index.js @@ -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; \ No newline at end of file +module.exports = Parser;