Fix content-type in GetObjects

master
Harshavardhana 10 years ago
parent aa2a714d50
commit c516c74c51
  1. 2
      pkg/webapi/minioapi/minioapi.go

@ -175,7 +175,7 @@ func (server *minioApi) listObjectsHandler(w http.ResponseWriter, req *http.Requ
var bytesBuffer bytes.Buffer
var encoder encoder
if contentType == xmlType {
w.Header().Set("Content-Type", `xml version="1.0" encoding="UTF-8"`)
w.Header().Set("Content-Type", "application/xml")
encoder = xml.NewEncoder(&bytesBuffer)
} else if contentType == jsonType {
w.Header().Set("Content-Type", "application/json")

Loading…
Cancel
Save