You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -300,7 +300,7 @@ class WorkspaceProvider implements IWorkspaceProvider {
300
300
// Folder
301
301
caseWorkspaceProvider.QUERY_PARAM_FOLDER:
302
302
if(config.remoteAuthority){
303
-
workspace={folderUri: URI.from({scheme: 'vscode-remote',path: value})};// support the nicer URI syntax for folders when connected to a remote
303
+
workspace={folderUri: URI.from({scheme: 'vscode-remote',path: value,authority: config.remoteAuthority})};// support the nicer URI syntax for folders when connected to a remote
304
304
}else{
305
305
workspace={folderUri: URI.parse(value)};
306
306
}
@@ -310,7 +310,7 @@ class WorkspaceProvider implements IWorkspaceProvider {
310
310
// Workspace
311
311
caseWorkspaceProvider.QUERY_PARAM_WORKSPACE:
312
312
if(config.remoteAuthority){
313
-
workspace={workspaceUri: URI.from({scheme: 'vscode-remote',path: value})};// support the nicer URI syntax for workspaces when connected to a remote
313
+
workspace={workspaceUri: URI.from({scheme: 'vscode-remote',path: value,authority: config.remoteAuthority})};// support the nicer URI syntax for workspaces when connected to a remote
0 commit comments