Fix error handling for failing to get output file

This commit is contained in:
Shane Kilkelly 2018-06-13 14:49:16 +01:00
parent 2cfc2b4738
commit 48a4f6c4c4

View file

@ -88,8 +88,8 @@ module.exports = ProjectOutputFileAgent = {
handleError: (error, req, res, next) -> handleError: (error, req, res, next) ->
if error instanceof BadDataError if error instanceof BadDataError
res.status(400).send("The submitted data is not valid") res.status(400).send("The submitted data is not valid")
else if error instanceof SourceFileNotFoundError else if error instanceof OutputFileFetchFailedError
res.status(404).send("Source file not found") res.status(404).send("Could not get output file")
else if error instanceof ProjectNotFoundError else if error instanceof ProjectNotFoundError
res.status(404).send("Project not found") res.status(404).send("Project not found")
else else