revive the returned workspace identifier

This commit is contained in:
Sandeep Somavarapu 2019-03-28 12:25:33 +01:00
parent 666e7fa7ba
commit cfe613c05b

View file

@ -28,6 +28,6 @@ export class WorkspacesService implements IWorkspacesService {
}
getWorkspaceIdentifier(configPath: URI): Promise<IWorkspaceIdentifier> {
return this.channel.call('getWorkspaceIdentifier', configPath);
return this.channel.call('getWorkspaceIdentifier', configPath).then(reviveWorkspaceIdentifier);
}
}