diff --git a/app/handlers/http/http.go b/app/handlers/http/http.go index 87cf145a..6775c94d 100644 --- a/app/handlers/http/http.go +++ b/app/handlers/http/http.go @@ -27,7 +27,7 @@ const ( type notAuthorizedContentTypeError struct{} func (e *notAuthorizedContentTypeError) Error() string { - return fmt.Sprintf("Accepted values for 'Content-Type': %s, %s, %s", HTMLContentType, OctetStreamContentType, MultipartFormDataContentType) + return fmt.Sprintf("Accepted values for 'Content-Type': %s, %s", OctetStreamContentType, MultipartFormDataContentType) } // FindAuthorizedContentType tries to return a content type according to a request header.