From 1ab21b4e56ecff363278444cb20a4209d8bc1275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=A2=E3=83=AC=E3=82=AF=E3=82=B5=E3=83=B3=E3=83=80?= =?UTF-8?q?=E3=83=BC=2Eeth?= <4975670+pavlovcik@users.noreply.github.com> Date: Sun, 27 Aug 2023 06:24:31 +0900 Subject: [PATCH] Update post.ts Related #673 --- src/handlers/payout/post.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/payout/post.ts b/src/handlers/payout/post.ts index 200fe5131..e91f1f9e3 100644 --- a/src/handlers/payout/post.ts +++ b/src/handlers/payout/post.ts @@ -62,7 +62,7 @@ export const incentivizeComments = async () => { return; } - const issueComments = await getAllIssueComments(issue.number, "full"); + const issueComments = await getAllIssueComments(issue.number, "raw"); logger.info(`Getting the issue comments done. comments: ${JSON.stringify(issueComments)}`); const issueCommentsByUser: Record = {}; for (const issueComment of issueComments) {