Improve HTTP 500 error message

This commit is contained in:
Tobie Morgan Hitchcock 2017-02-10 19:55:46 +00:00
parent b62b7ed2c9
commit fba3a97a24

View file

@ -137,7 +137,9 @@ var errs = map[int]*err{
},
500: {
Code: 500,
Details: "There was a problem with our servers, and we have been notified",
Code: 500,
Details: "Internal server error",
Description: "There was a problem with our servers, and we have been notified.",
},
},
}