We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d33b2d2 commit a3ee7c9Copy full SHA for a3ee7c9
src/server.ts
@@ -490,7 +490,7 @@ export class MainServer extends Server {
490
const locale = environment.args.locale || await getLocaleFromConfig(environment.userDataPath);
491
const cwd = process.env.VSCODE_CWD || process.cwd();
492
const workspacePath = parsedUrl.query.workspace as string | undefined;
493
- const folderPath = !workspacePath ? parsedUrl.query.folder as string | undefined || this.options.folderUri || cwd: undefined;
+ const folderPath = !workspacePath ? parsedUrl.query.folder as string | undefined || this.options.folderUri : undefined;
494
const remoteAuthority = request.headers.host as string;
495
const transformer = getUriTransformer(remoteAuthority);
496
const options: Options = {
0 commit comments