Fix a bug in error parsing #21

Merged
joeybaker merged 3 commits from better-error into master 2016-09-05 19:25:14 +00:00
Showing only changes of commit da6b3ce963 - Show all commits

View File

@ -8,7 +8,8 @@ export default (target, key, descriptor) => {
await fn(request, reply);
} catch (e) {
if (e.original) {
const { code, detail } = e.original;
const { code, detail, hint } = e.original;
let error;
// pg error codes https://www.postgresql.org/docs/9.5/static/errcodes-appendix.html
if (code && (code.startsWith('22') || code.startsWith('23'))) {
@ -20,6 +21,10 @@ export default (target, key, descriptor) => {
error.reformat();
}
// hint might provide useful information about how to fix the problem
if (hint) {
error.message += ` Hint: ${hint}`;
error.reformat();
}
reply(error);