Fix "Open File Location" for CSV Export (#5273)

Fix #5177 - File path wasn't being parsed correctly, URI.file should be used for full file paths.
This commit is contained in:
Charles Gagnon
2019-04-30 10:41:19 -07:00
committed by GitHub
parent 56342af140
commit 08f47e7e14

View File

@@ -14,7 +14,7 @@ export class ShowFileInFolderAction extends Action {
}
run(): Promise<void> {
return this.windowsService.showItemInFolder(URI.parse(this.path));
return this.windowsService.showItemInFolder(URI.file(this.path));
}
}