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 @@ -603,20 +603,15 @@ function readCookie(name: string): string | undefined {
603
603
const secretStorageCrypto = secretStorageKeyPath && ServerKeyedAESCrypto . supported ( )
604
604
? new ServerKeyedAESCrypto ( secretStorageKeyPath ) : new TransparentCrypto ( ) ;
605
605
const config : IWorkbenchConstructionOptions & { folderUri ?: UriComponents ; workspaceUri ?: UriComponents ; callbackRoute : string } = {
606
+ ...originalConfig ,
606
607
remoteAuthority : window . location . host ,
607
- developmentOptions : originalConfig . developmentOptions ,
608
- settingsSyncOptions : originalConfig . settingsSyncOptions ,
609
- folderUri : originalConfig . folderUri ,
610
- workspaceUri : originalConfig . workspaceUri ,
611
- callbackRoute : originalConfig . callbackRoute
612
608
} ;
613
609
614
610
// Create workbench
615
611
create ( mainWindow . document . body , {
616
612
...config ,
617
613
windowIndicator : config . windowIndicator ?? { label : '$(remote)' , tooltip : `${ product . nameShort } Web` } ,
618
614
settingsSyncOptions : config . settingsSyncOptions ? { enabled : config . settingsSyncOptions . enabled , } : undefined ,
619
- developmentOptions : { ...config . developmentOptions } ,
620
615
workspaceProvider : WorkspaceProvider . create ( config ) ,
621
616
urlCallbackProvider : new LocalStorageURLCallbackProvider ( config . callbackRoute ) ,
622
617
secretStorageProvider : config . remoteAuthority && ! secretStorageKeyPath
You can’t perform that action at this time.
0 commit comments