We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2ef072 commit ae473bcCopy full SHA for ae473bc
1 file changed
src/commands.ts
@@ -1280,7 +1280,10 @@ ${contents}
1280
vscode.commands.registerCommand('pr.refreshChanges', _ => {
1281
reviewsManager.reviewManagers.forEach(reviewManager => {
1282
vscode.window.withProgress({ location: { viewId: 'prStatus:github' } }, async () => {
1283
- await reviewManager.updateComments();
+ await Promise.all([
1284
+ reviewManager.repository.pull(false),
1285
+ reviewManager.updateComments()
1286
+ ]);
1287
PullRequestOverviewPanel.refresh();
1288
reviewManager.changesInPrDataProvider.refresh();
1289
});
0 commit comments