This commit is contained in:
zadam 2020-03-08 22:00:12 +01:00
parent deb67d6275
commit 719f10981e

View file

@ -4,6 +4,11 @@ const syncTableService = require('./sync_table');
const eventService = require('./events'); const eventService = require('./events');
async function updateEntity(sync, entity, sourceId) { async function updateEntity(sync, entity, sourceId) {
// can be undefined for options with isSynced=false
if (!entity) {
return;
}
const {entityName} = sync; const {entityName} = sync;
if (entityName === 'notes') { if (entityName === 'notes') {