We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4a99a4 commit ceb7116Copy full SHA for ceb7116
src/view/pullRequestCommentController.ts
@@ -164,8 +164,9 @@ export class PullRequestCommentController implements CommentHandler, CommentReac
164
this._commentThreadCache[this.getCommentThreadCacheKey(fileName, isBase)] = threadsByPath[fileName]
165
.filter(
166
thread =>
167
- (thread.diffSide === DiffSide.LEFT && isBase) ||
168
- (thread.diffSide === DiffSide.RIGHT && !isBase),
+ ((thread.diffSide === DiffSide.LEFT && isBase) ||
+ (thread.diffSide === DiffSide.RIGHT && !isBase))
169
+ && (thread.line !== null),
170
)
171
.map(thread => {
172
const range = new vscode.Range(
0 commit comments