the error thrown by pouchdb is propagated if it is other than not-found
This commit is contained in:
parent
720327b58f
commit
9408137826
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue