mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
CopyObject:Set Content-Type to application/octet-stream if it is not set (#6958)
This commit is contained in:
parent
d2f8f8c7ee
commit
7881791a91
@ -134,6 +134,11 @@ func extractMetadata(ctx context.Context, r *http.Request) (metadata map[string]
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// Set content-type to default value if it is not set.
|
||||
if _, ok := metadata["content-type"]; !ok {
|
||||
metadata["content-type"] = "application/octet-stream"
|
||||
}
|
||||
|
||||
// Success.
|
||||
return metadata, nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user