diff --git a/routes/api/sync.js b/routes/api/sync.js index 1cf872181..1f068a4af 100644 --- a/routes/api/sync.js +++ b/routes/api/sync.js @@ -46,19 +46,19 @@ router.get('/notes_history/:noteHistoryId', auth.checkApiAuth, async (req, res, }); router.put('/notes', auth.checkApiAuth, async (req, res, next) => { - await sync.updateNote(req.body.entity, req.body.links, req.body.source_id); + await sync.updateNote(req.body.entity, req.body.links, req.body.sourceId); res.send({}); }); router.put('/notes_tree', auth.checkApiAuth, async (req, res, next) => { - await sync.updateNoteTree(req.body.entity, req.body.source_id); + await sync.updateNoteTree(req.body.entity, req.body.sourceId); res.send({}); }); router.put('/notes_history', auth.checkApiAuth, async (req, res, next) => { - await sync.updateNoteHistory(req.body.entity, req.body.source_id); + await sync.updateNoteHistory(req.body.entity, req.body.sourceId); res.send({}); }); diff --git a/services/sync.js b/services/sync.js index 3dea51fd3..94179e28f 100644 --- a/services/sync.js +++ b/services/sync.js @@ -50,13 +50,13 @@ async function pullSync(cookieJar, syncLog) { // TODO: ideally this should be in transaction if (sync.entity_name === 'notes') { - await updateNote(resp.entity, resp.links, sync.source_id, syncLog) + await updateNote(resp.entity, resp.links, sync.source_id, syncLog); } else if (sync.entity_name === 'notes_tree') { - await updateNoteTree(resp, sync.source_id, syncLog) + await updateNoteTree(resp, sync.source_id, syncLog); } else if (sync.entity_name === 'notes_history') { - await updateNoteHistory(resp, sync.source_id, syncLog) + await updateNoteHistory(resp, sync.source_id, syncLog); } else { logSync("Unrecognized entity type " + sync.entity_name, syncLog); @@ -207,8 +207,6 @@ function logSync(message, syncLog) { if (syncLog) { syncLog.push(message); } - - console.log(message); } async function getChanged(lastSyncId, sourceId) {