allow to set default content type with charset

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2021-04-10 12:41:55 +03:00
parent 0d442683ee
commit 676634850e
1 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ func (h *httpServer) ServeHTTP(w http.ResponseWriter, r *http.Request) {
return
}
ct := DefaultContentType
ct := strings.Split(DefaultContentType, ";")[0]
if htype := r.Header.Get("Content-Type"); htype != "" {
ct = strings.Split(htype, ";")[0]
}
@ -85,7 +85,7 @@ func (h *httpServer) ServeHTTP(w http.ResponseWriter, r *http.Request) {
var err error
switch ct {
case "application/x-www-form-urlencoded":
cf, err = h.newCodec(DefaultContentType)
cf, err = h.newCodec(strings.Split(DefaultContentType, ";")[0])
default:
cf, err = h.newCodec(ct)
}