Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit e149e69

Browse files
committed
Fix added argument to thread.Comments
1 parent 608ab5c commit e149e69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.InlineReviews/Services/PullRequestSessionService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ async Task<PullRequestDetailModel> ReadPullRequestDetailWithResolved(HostAddress
347347
}).ToList(),
348348
Threads = pr.ReviewThreads(null, null, null, null).AllPages().Select(thread => new PullRequestReviewThreadModel
349349
{
350-
Comments = thread.Comments(null, null, null, null).AllPages().Select(comment => new CommentAdapter
350+
Comments = thread.Comments(null, null, null, null, null).AllPages().Select(comment => new CommentAdapter
351351
{
352352
Id = comment.Id.Value,
353353
PullRequestId = comment.PullRequest.Number,

0 commit comments

Comments
 (0)