File tree 1 file changed +1
-6
lines changed
src/vs/code/browser/workbench
1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -574,20 +574,15 @@ function readCookie(name: string): string | undefined {
574
574
const secretStorageCrypto = secretStorageKeyPath && ServerKeyedAESCrypto . supported ( )
575
575
? new ServerKeyedAESCrypto ( secretStorageKeyPath ) : new TransparentCrypto ( ) ;
576
576
const config : IWorkbenchConstructionOptions & { folderUri ?: UriComponents ; workspaceUri ?: UriComponents ; callbackRoute : string } = {
577
+ ...originalConfig ,
577
578
remoteAuthority : window . location . host ,
578
- developmentOptions : originalConfig . developmentOptions ,
579
- settingsSyncOptions : originalConfig . settingsSyncOptions ,
580
- folderUri : originalConfig . folderUri ,
581
- workspaceUri : originalConfig . workspaceUri ,
582
- callbackRoute : originalConfig . callbackRoute
583
579
} ;
584
580
585
581
// Create workbench
586
582
create ( mainWindow . document . body , {
587
583
...config ,
588
584
windowIndicator : config . windowIndicator ?? { label : '$(remote)' , tooltip : `${ product . nameShort } Web` } ,
589
585
settingsSyncOptions : config . settingsSyncOptions ? { enabled : config . settingsSyncOptions . enabled , } : undefined ,
590
- developmentOptions : { ...config . developmentOptions } ,
591
586
workspaceProvider : WorkspaceProvider . create ( config ) ,
592
587
urlCallbackProvider : new LocalStorageURLCallbackProvider ( config . callbackRoute ) ,
593
588
secretStorageProvider : config . remoteAuthority && ! secretStorageKeyPath
You can’t perform that action at this time.
0 commit comments