|
@@ -70,7 +70,7 @@ func RespondAsBadRequest(w http.ResponseWriter, r *http.Request, err error) {
|
|
|
log.Printf("%s\n", err.Error())
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
|
- if _, e := w.Write([]byte(`{"error":"` + strconv.Quote(err.Error()) + `"}`)); e != nil {
|
|
|
+ if _, e := w.Write([]byte(`{"error":` + strconv.Quote(err.Error()) + `}`)); e != nil {
|
|
|
log.Printf("%s\n", e.Error())
|
|
|
}
|
|
|
} else {
|