Skip to content
This repository has been archived by the owner on Mar 22, 2018. It is now read-only.

Commit

Permalink
implementation #137
Browse files Browse the repository at this point in the history
  • Loading branch information
arafato committed Mar 17, 2018
1 parent b622ce5 commit ad4cd6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/core/table/TableStorageManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,13 @@ class TableStorageManager {

// A property cannot be removed with a Merge Entity operation (in contrast to an update operation).
for (const key of Object.keys(entity.attribs)) {
if (entity[key]) {
if (entity.attribs[key]) {
res.attribs[key] = entity.attribs[key];
}
}
res.odata = entity.odata;
coll.update(res);
return new EntityProxy(res);
return BbPromise.resolve(new AzuriteTableResponse({ proxy: new EntityProxy(res) }));
}

_getTable(name) {
Expand Down

0 comments on commit ad4cd6b

Please sign in to comment.