Skip to content

Commit 4f9ab4a

Browse files
committed
fix: code review sync
1 parent 40b3eae commit 4f9ab4a

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

apps/api/src/app/github/services/github-code-review.service.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,10 @@ const fetchPullRequestReviews = async (
263263
// Ignore unknown authors
264264
if (!review.author?.id || !review.author?.login) continue;
265265

266-
const gitProfileId = await getGitProfileId(review.author);
266+
const gitProfileId = await getGitProfileId({
267+
nodeId: review.author.id,
268+
...review.author,
269+
});
267270

268271
const bodyComment = review.body ? 1 : 0;
269272

0 commit comments

Comments
 (0)