mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
fix double import of auto generated link relations
(cherry picked from commit 144e75da9e7bbb7f89ee5dc8f313a875c528dfdd)
This commit is contained in:
parent
3eebce22e7
commit
33a2cd21a3
@ -150,6 +150,11 @@ async function importTar(importContext, fileBuffer, importRootNote) {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (attr.type === 'relation' && ['internal-link', 'image-link', 'relation-map-link'].includes(attr.name)) {
|
||||||
|
// these relations are created automatically and as such don't need to be duplicated in the import
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (attr.type === 'relation') {
|
if (attr.type === 'relation') {
|
||||||
attr.value = getNewNoteId(attr.value);
|
attr.value = getNewNoteId(attr.value);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user