-
Notifications
You must be signed in to change notification settings - Fork 261
Closed
Labels
bugProduct bugProduct bugships-in-future-updateThe issue is fixed in our 'master' branch and will ship in the next PREVIEW releaseThe issue is fixed in our 'master' branch and will ship in the next PREVIEW release
Milestone
Description
In 1.26 we discovered that several extensions call the 'vscode.openFolder' command with invalid file URIs:
ms-dynamics-smb.al/out/src/services/bootstrapService.js
57,45: vscode.commands.executeCommand('vscode.openFolder', vscode.Uri.parse(dir));
When creating a URI from a file path, always use vscode.URI.file(path)
, e.g vscode.URI.file('c:\\test')
Use vscode.URI.parse(uriString)
when the input string is in the form scheme://authority/path
See microsoft/vscode#57267 for more information or for questions.
- AL Extension Version:
- Server Version:
Metadata
Metadata
Assignees
Labels
bugProduct bugProduct bugships-in-future-updateThe issue is fixed in our 'master' branch and will ship in the next PREVIEW releaseThe issue is fixed in our 'master' branch and will ship in the next PREVIEW release