apazureck / odatatools

OData Tools for vscode
24 stars 12 forks source link

Get return arrays are not handled correctly #19

Closed apazureck closed 6 years ago

apazureck commented 7 years ago

In odataproxybase.ts there the return arrays are not correct. It has to return data.value instead of data:

if (id) {
  resolve(data);
  } else {
  resolve(data.value);
}