Browse Source

Merge pull request #7200 from Budibase/fix/datasource-not-exporting

fixed pouchdb unable to find the view throwing error
master
NEOLPAR 4 years ago
committed by GitHub
parent
commit
d81b1af8c1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      packages/server/src/api/controllers/view/utils.js

13
packages/server/src/api/controllers/view/utils.js

@ -20,8 +20,17 @@ exports.getView = async viewName => {
return null
}
const viewDoc = await db.get(generateMemoryViewID(viewName))
return viewDoc.view
try {
const viewDoc = await db.get(generateMemoryViewID(viewName))
return viewDoc.view
} catch (err) {
// Return null when PouchDB doesn't found the view
if (err.status === 404) {
return null
}
throw err
}
}
}

Loading…
Cancel
Save