fix note reordering sync again

This commit is contained in:
azivner
2018-04-12 18:31:29 -04:00
parent 6a57b8a7e7
commit 592c51d1a5
3 changed files with 7 additions and 15 deletions

View File

@@ -68,7 +68,7 @@ async function update(req) {
const entities = req.body.entities;
for (const {sync, entity} of entities) {
await syncUpdateService.updateEntity(sync.entityName, entity, sourceId);
await syncUpdateService.updateEntity(sync, entity, sourceId);
}
}