Fix added argument to thread.Comments

This commit is contained in:
Jamie Cansdale 2020-03-10 20:00:33 +00:00
Родитель 608ab5c2f3
Коммит e149e69e08
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -347,7 +347,7 @@ namespace GitHub.InlineReviews.Services
}).ToList(),
Threads = pr.ReviewThreads(null, null, null, null).AllPages().Select(thread => new PullRequestReviewThreadModel
{
Comments = thread.Comments(null, null, null, null).AllPages().Select(comment => new CommentAdapter
Comments = thread.Comments(null, null, null, null, null).AllPages().Select(comment => new CommentAdapter
{
Id = comment.Id.Value,
PullRequestId = comment.PullRequest.Number,