We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
collapseAll
1 parent 2ffd771 commit ceee907Copy full SHA for ceee907
src/view/treeNodes/pullRequestNode.ts
@@ -121,7 +121,9 @@ export class PRNode extends TreeNode implements vscode.CommentingRangeProvider2
121
122
// Kick off review thread initialization but don't await it.
123
// Events will be fired later that will cause the tree to update when this is ready.
124
- this.pullRequestModel.initializeReviewThreadCache();
+ if (!this.pullRequestModel.reviewThreadsCacheReady) {
125
+ this.pullRequestModel.initializeReviewThreadCache();
126
+ }
127
128
return result;
129
} catch (e) {
0 commit comments