Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
cagdas001 committed Jan 5, 2019
1 parent cf92f73 commit 0e24356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gitCommentService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ export class GitCommentService implements Disposable {
function checkReply(replies: Comment[]) {
return replies.filter(reply => {
if (reply.Replies) {
checkReply(reply.Replies);
reply.Replies = checkReply(reply.Replies);
}
return reply.Id !== commentId;
});
Expand Down

0 comments on commit 0e24356

Please sign in to comment.