mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-04 15:25:47 +01:00
Fix comment thread update calculation
This commit is contained in:
@@ -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 => {
|
||||
|
||||
Reference in New Issue
Block a user