catch getProjectAsset error

This commit is contained in:
Cassie Tarakajian 2017-11-27 15:14:50 -05:00
parent bdd8df6301
commit 3b33f3acca

View file

@ -143,6 +143,10 @@ export function getProjectAsset(req, res) {
if (err) { if (err) {
return res.status(404).send({ message: 'Project with that id does not exist' }); return res.status(404).send({ message: 'Project with that id does not exist' });
} }
if (!project) {
console.error(req.params.project_id);
return res.status(404).send({ message: 'Project with that id does not exist' });
}
let assetURL = null; let assetURL = null;
const seekPath = req.params[0]; // req.params.asset_path; const seekPath = req.params[0]; // req.params.asset_path;