This commit is contained in:
Martin McKeaveney 2020-06-24 17:26:14 +01:00
parent d32df44ae0
commit 52358e93ad
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ exports.save = async function(ctx) {
// create links in other tables
for (let key in record) {
if (model.schema[key].type === "link") {
if (model.schema[key] && model.schema[key].type === "link") {
const linked = await db.allDocs({
include_docs: true,
keys: record[key],