We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d698ce6 commit bca6f51Copy full SHA for bca6f51
1 file changed
src/vs/code/electron-main/app.ts
@@ -266,8 +266,8 @@ export class CodeApplication {
266
return true;
267
}
268
269
- const srcUri: any = URI.parse(source.toLowerCase()).fsPath;
270
- const rootUri = URI.file(this.environmentService.appRoot.toLowerCase()).fsPath;
+ const srcUri: any = URI.parse(source).fsPath.toLowerCase();
+ const rootUri = URI.file(this.environmentService.appRoot).fsPath.toLowerCase();
271
return srcUri.startsWith(rootUri + nativeSep);
272
273
0 commit comments