File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ export class RootNode extends NodeBase {
184
184
if ( category == "CSP" && path == "" ) {
185
185
// Use the results from the getCSPApps() API
186
186
const cspAppsKey =
187
- `${ api . config . host } :${ api . config . port } ${ api . config . pathPrefix } : [${ api . config . ns } ]` . toLowerCase ( ) ;
187
+ `${ api . config . host } :${ api . config . port } ${ api . config . pathPrefix } [${ api . config . ns } ]` . toLowerCase ( ) ;
188
188
let nsCspApps : string [ ] | undefined = cspApps . get ( cspAppsKey ) ;
189
189
if ( nsCspApps == undefined ) {
190
190
nsCspApps = await api . getCSPApps ( ) . then ( ( data ) => data . result . content || [ ] ) ;
Original file line number Diff line number Diff line change @@ -644,8 +644,8 @@ export async function addWsServerRootFolderData(wsFolders: readonly vscode.Works
644
644
if ( value . redirectDotvscode ) {
645
645
// We must redirect .vscode Uris for this folder, so see
646
646
// if the web app to do so is configured on the server
647
- const { host, port, pathPrefix, ns } = api . config ;
648
- const key = `${ host } :${ port } ${ pathPrefix } [${ ns } ]` . toLowerCase ( ) ;
647
+ const { host, port, pathPrefix } = api . config ;
648
+ const key = `${ host } :${ port } ${ pathPrefix } [%SYS ]` . toLowerCase ( ) ;
649
649
let webApps = cspApps . get ( key ) ;
650
650
if ( ! webApps ) {
651
651
webApps = await api
You can’t perform that action at this time.
0 commit comments