Make sure both directions exist.

This commit is contained in:
mike12345567 2021-02-09 13:20:53 +00:00
parent 383c2a6c0a
commit a1de336db9
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ class LinkController {
if (linkId && linkId !== "" && linkDocIds.indexOf(linkId) === -1) {
// first check the doc we're linking to exists
try {
await this._db.get(linkId)
await Promise.all([this._db.get(linkId), this._db.get(row._id)])
} catch (err) {
// skip links that don't exist
continue