Quick fix to make sure all relationships link to a valid, existing doc.

This commit is contained in:
mike12345567 2021-02-09 13:18:59 +00:00
parent febc2ceda0
commit 04035a24e9
1 changed files with 7 additions and 0 deletions

View File

@ -138,6 +138,13 @@ class LinkController {
// iterate through the link IDs in the row field, see if any don't exist already
for (let linkId of rowField) {
if (linkId && linkId !== "" && linkDocIds.indexOf(linkId) === -1) {
// first check the doc we're linking to exists
try {
await this._db.get(linkId)
} catch (err) {
// skip links that don't exist
continue
}
operations.push(
new LinkDocument(
table._id,