Browse Source

if mt != "application/octet-stream"

became
if !strings.HasPrefix(mt, "application/octet-stream")

In our situation,
    mt can be 'application/octet-stream;charset=ISO-8859-1',
    so I think HasPrefix will be more accurate.
pull/142/head
yanyiwu 10 years ago
parent
commit
96b73e3e94
  1. 2
      go/weed/weed_server/volume_server_handlers_read.go

2
go/weed/weed_server/volume_server_handlers_read.go

@ -89,7 +89,7 @@ func (vs *VolumeServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request)
} }
if n.MimeSize > 0 { if n.MimeSize > 0 {
mt := string(n.Mime) mt := string(n.Mime)
if mt != "application/octet-stream" {
if !strings.HasPrefix(mt, "application/octet-stream") {
mtype = mt mtype = mt
} }
} }

Loading…
Cancel
Save