1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-02 08:40:20 +02:00

fix null content type caused exception in hdfs client

fix https://github.com/seaweedfs/seaweedfs/issues/4170
This commit is contained in:
chrislu 2023-02-01 02:38:05 -08:00
parent 0d085ec175
commit c47f75eb5b

View file

@ -162,6 +162,8 @@ func (fs *FilerServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request)
}
if mimeType != "" {
w.Header().Set("Content-Type", mimeType)
} else {
w.Header().Set("Content-Type", "application/octet-stream")
}
// print out the header from extended properties