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 @@ -587,20 +587,15 @@ function readCookie(name: string): string | undefined {
587
587
const secretStorageCrypto = secretStorageKeyPath && ServerKeyedAESCrypto . supported ( )
588
588
? new ServerKeyedAESCrypto ( secretStorageKeyPath ) : new TransparentCrypto ( ) ;
589
589
const config : IWorkbenchConstructionOptions & { folderUri ?: UriComponents ; workspaceUri ?: UriComponents ; callbackRoute : string } = {
590
+ ...originalConfig ,
590
591
remoteAuthority : window . location . host ,
591
- developmentOptions : originalConfig . developmentOptions ,
592
- settingsSyncOptions : originalConfig . settingsSyncOptions ,
593
- folderUri : originalConfig . folderUri ,
594
- workspaceUri : originalConfig . workspaceUri ,
595
- callbackRoute : originalConfig . callbackRoute
596
592
} ;
597
593
598
594
// Create workbench
599
595
create ( mainWindow . document . body , {
600
596
...config ,
601
597
windowIndicator : config . windowIndicator ?? { label : '$(remote)' , tooltip : `${ product . nameShort } Web` } ,
602
598
settingsSyncOptions : config . settingsSyncOptions ? { enabled : config . settingsSyncOptions . enabled , } : undefined ,
603
- developmentOptions : { ...config . developmentOptions } ,
604
599
workspaceProvider : WorkspaceProvider . create ( config ) ,
605
600
urlCallbackProvider : new LocalStorageURLCallbackProvider ( config . callbackRoute ) ,
606
601
secretStorageProvider : config . remoteAuthority && ! secretStorageKeyPath
You can’t perform that action at this time.
0 commit comments