diff --git a/resource.go b/resource.go index b2112df..0f76a94 100644 --- a/resource.go +++ b/resource.go @@ -36,9 +36,7 @@ func (resource *Resource) Handle(path string, w http.ResponseWriter, req *http.R // Error out on bad IDs which contains /es if x := strings.Index(subpath, "/"); x != -1 { - w.Header().Set("Content-Type", "text/plain; charset=utf-8") - w.WriteHeader(400) - w.Write([]byte("Invalid ID: " + subpath)) + response.Text(w, 400, "Invalid ID: "+subpath) return true }