@@ -113,7 +113,7 @@ export class ReviewCommentController extends CommentControllerBase implements Co
113113 ) ;
114114
115115 const range = thread . subjectType === SubjectType . FILE ? undefined : threadRange ( thread . originalStartLine - 1 , thread . originalEndLine - 1 ) ;
116- return createVSCodeCommentThreadForReviewThread ( this . _context , reviewUri , range , thread , this . _commentController , ( await this . _folderRepoManager . getCurrentUser ( ) ) . login , this . githubReposForPullRequest ( this . _folderRepoManager . activePullRequest ) ) ;
116+ return createVSCodeCommentThreadForReviewThread ( this . _context , reviewUri , range , thread , this . _commentController , ( await this . _folderRepoManager . getCurrentUser ( ) ) , this . githubReposForPullRequest ( this . _folderRepoManager . activePullRequest ) ) ;
117117 }
118118
119119 /**
@@ -146,7 +146,7 @@ export class ReviewCommentController extends CommentControllerBase implements Co
146146 }
147147 range = threadRange ( adjustedStartLine , adjustedEndLine ) ;
148148 }
149- return createVSCodeCommentThreadForReviewThread ( this . _context , uri , range , thread , this . _commentController , ( await this . _folderRepoManager . getCurrentUser ( ) ) . login , this . githubReposForPullRequest ( this . _folderRepoManager . activePullRequest ) ) ;
149+ return createVSCodeCommentThreadForReviewThread ( this . _context , uri , range , thread , this . _commentController , ( await this . _folderRepoManager . getCurrentUser ( ) ) , this . githubReposForPullRequest ( this . _folderRepoManager . activePullRequest ) ) ;
150150 }
151151
152152 /**
@@ -172,7 +172,7 @@ export class ReviewCommentController extends CommentControllerBase implements Co
172172 ) ;
173173
174174 const range = thread . subjectType === SubjectType . FILE ? undefined : threadRange ( thread . startLine - 1 , thread . endLine - 1 ) ;
175- return createVSCodeCommentThreadForReviewThread ( this . _context , reviewUri , range , thread , this . _commentController , ( await this . _folderRepoManager . getCurrentUser ( ) ) . login , this . githubReposForPullRequest ( this . _folderRepoManager . activePullRequest ) ) ;
175+ return createVSCodeCommentThreadForReviewThread ( this . _context , reviewUri , range , thread , this . _commentController , ( await this . _folderRepoManager . getCurrentUser ( ) ) , this . githubReposForPullRequest ( this . _folderRepoManager . activePullRequest ) ) ;
176176 }
177177
178178 private async doInitializeCommentThreads ( reviewThreads : IReviewThread [ ] ) : Promise < void > {
0 commit comments