diff --git a/src/services/sync_update.js b/src/services/sync_update.js index 4415a62df..10b8a5112 100644 --- a/src/services/sync_update.js +++ b/src/services/sync_update.js @@ -4,6 +4,11 @@ const syncTableService = require('./sync_table'); const eventService = require('./events'); async function updateEntity(sync, entity, sourceId) { + // can be undefined for options with isSynced=false + if (!entity) { + return; + } + const {entityName} = sync; if (entityName === 'notes') {