Skip to content

Commit

Permalink
Merge pull request gitkraken#126 from cagdas001/fix-123
Browse files Browse the repository at this point in the history
  • Loading branch information
billsedison authored Jan 13, 2019
2 parents ffc19b5 + 0e24356 commit deb9500
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 deb9500

Please sign in to comment.