fix links table reference

This commit is contained in:
zadam
2019-06-09 11:16:00 +02:00
parent 4cacd1dfa2
commit 69e48ff4d7
3 changed files with 5 additions and 5 deletions

View File

@@ -28,7 +28,7 @@ async function updateEntity(sync, entity, sourceId) {
else if (entityName === 'recent_notes') {
await updateRecentNotes(entity, sourceId);
}
else if (entityName === 'link_map.js') {
else if (entityName === 'links') {
await updateLink(entity, sourceId);
}
else if (entityName === 'attributes') {
@@ -164,7 +164,7 @@ async function updateLink(entity, sourceId) {
if (!origLink || origLink.utcDateModified <= entity.utcDateModified) {
await sql.transactional(async () => {
await sql.replace("link_map.js", entity);
await sql.replace("links", entity);
await syncTableService.addLinkSync(entity.linkId, sourceId);
});