Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vs/workbench/contrib/remote/electron-sandbox/remote.contribution.ts')
-rw-r--r--src/vs/workbench/contrib/remote/electron-sandbox/remote.contribution.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vs/workbench/contrib/remote/electron-sandbox/remote.contribution.ts b/src/vs/workbench/contrib/remote/electron-sandbox/remote.contribution.ts
index 37c91b0b6b8..4e10ac0bea3 100644
--- a/src/vs/workbench/contrib/remote/electron-sandbox/remote.contribution.ts
+++ b/src/vs/workbench/contrib/remote/electron-sandbox/remote.contribution.ts
@@ -117,8 +117,8 @@ class RemoteEmptyWorkbenchPresentation extends Disposable implements IWorkbenchC
return shouldShowExplorer();
}
- const { remoteAuthority, filesToDiff, filesToOpenOrCreate, filesToWait } = environmentService;
- if (remoteAuthority && contextService.getWorkbenchState() === WorkbenchState.EMPTY && !filesToDiff?.length && !filesToOpenOrCreate?.length && !filesToWait) {
+ const { remoteAuthority, filesToDiff, filesToMerge, filesToOpenOrCreate, filesToWait } = environmentService;
+ if (remoteAuthority && contextService.getWorkbenchState() === WorkbenchState.EMPTY && !filesToDiff?.length && !filesToMerge?.length && !filesToOpenOrCreate?.length && !filesToWait) {
remoteAuthorityResolverService.resolveAuthority(remoteAuthority).then(() => {
if (shouldShowExplorer()) {
commandService.executeCommand('workbench.view.explorer');