Normalize folder/file URI paths with slash (#184163)

This commit is contained in:
Martin Aeschlimann 2023-06-02 15:58:49 +02:00 committed by GitHub
parent dbeea39df4
commit 80deac05cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -869,6 +869,9 @@ export class WindowsMainService extends Disposable implements IWindowsMainServic
return undefined;
}
if (!uri.path) {
return uri.with({ path: '/' });
}
return uri;
} catch (e) {