Browse Source

Fix strconv.Quote

Volodymyr Tkach 2 years ago
parent
commit
b2088f919a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/http/helpers/helpers.go

+ 1 - 1
utils/http/helpers/helpers.go

@@ -70,7 +70,7 @@ func RespondAsBadRequest(w http.ResponseWriter, r *http.Request, err error) {
 		log.Printf("%s\n", err.Error())
 		log.Printf("%s\n", err.Error())
 		w.Header().Set("Content-Type", "application/json")
 		w.Header().Set("Content-Type", "application/json")
 		w.WriteHeader(http.StatusBadRequest)
 		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())
 			log.Printf("%s\n", e.Error())
 		}
 		}
 	} else {
 	} else {