Skip to content

Commit

Permalink
Improve error message asking users to create an issue in the github repo
Browse files Browse the repository at this point in the history
  • Loading branch information
pbu88 committed Nov 1, 2021
1 parent 4226fc4 commit 8b82de3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/App.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ app.put('/api/diff', function (req: any, res: any) {
}).catch(err => {
console.error(err)
res.status(500)
res.send({error: "Oops, something failed, please try again later ..."});
res.send({error: "Oops, something failed, please try again later. If the problem persists, create an issue in https://github.com/pbu88/diffy/issues/new/"});
});
});

Expand Down

0 comments on commit 8b82de3

Please sign in to comment.