mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Fix error handling for failing to get output file
This commit is contained in:
parent
2cfc2b4738
commit
48a4f6c4c4
1 changed files with 2 additions and 2 deletions
|
@ -88,8 +88,8 @@ module.exports = ProjectOutputFileAgent = {
|
|||
handleError: (error, req, res, next) ->
|
||||
if error instanceof BadDataError
|
||||
res.status(400).send("The submitted data is not valid")
|
||||
else if error instanceof SourceFileNotFoundError
|
||||
res.status(404).send("Source file not found")
|
||||
else if error instanceof OutputFileFetchFailedError
|
||||
res.status(404).send("Could not get output file")
|
||||
else if error instanceof ProjectNotFoundError
|
||||
res.status(404).send("Project not found")
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue