diff --git a/src/commands.ts b/src/commands.ts index e57dc9edaf..1765a536be 100644 --- a/src/commands.ts +++ b/src/commands.ts @@ -1280,7 +1280,10 @@ ${contents} vscode.commands.registerCommand('pr.refreshChanges', _ => { reviewsManager.reviewManagers.forEach(reviewManager => { vscode.window.withProgress({ location: { viewId: 'prStatus:github' } }, async () => { - await reviewManager.updateComments(); + await Promise.all([ + reviewManager.repository.pull(false), + reviewManager.updateComments() + ]); PullRequestOverviewPanel.refresh(); reviewManager.changesInPrDataProvider.refresh(); });