the error thrown by pouchdb is propagated if it is other than not-found

This commit is contained in:
NEOLPAR 2022-08-11 14:56:13 +01:00
parent 720327b58f
commit 9408137826
1 changed files with 4 additions and 2 deletions

View File

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