This commit is contained in:
Sandeep Somavarapu
2019-02-21 11:32:32 +01:00
parent 8012d06e76
commit 564b7120ab
3 changed files with 5 additions and 12 deletions

View File

@@ -794,7 +794,7 @@ export class ExtHostDebugService implements ExtHostDebugServiceShape {
private async getFolder(_folderUri: UriComponents | undefined): Promise<vscode.WorkspaceFolder | undefined> {
if (_folderUri) {
const folderURI = URI.revive(_folderUri);
return await this._workspaceService.resolveWorkspaceFolder2(folderURI);
return await this._workspaceService.resolveWorkspaceFolder(folderURI);
}
return undefined;
}