Fix comment thread update calculation

This commit is contained in:
Rachel Macfarlane
2018-04-19 17:47:03 -07:00
parent 397077087a
commit b25496df39
@@ -199,11 +199,12 @@ export class ReviewMode implements vscode.DecorationProvider {
return true;
}
if (matchingComment[0].body !== oldComment.body) {
if (matchingComment[0].body.value !== oldComment.body.value) {
return true;
}
});
return true;
return false;
}
newCommentThreads.forEach(thread => {