mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
Update content-language field for Azure gateway (#6061)
Fixes https://github.com/minio/minio-go/issues/996
This commit is contained in:
parent
c91abe6c4b
commit
eb0e56ccf6
@ -238,6 +238,8 @@ func s3MetaToAzureProperties(ctx context.Context, s3Metadata map[string]string)
|
|||||||
props.ContentMD5 = v
|
props.ContentMD5 = v
|
||||||
case k == "Content-Type":
|
case k == "Content-Type":
|
||||||
props.ContentType = v
|
props.ContentType = v
|
||||||
|
case k == "Content-Language":
|
||||||
|
props.ContentLanguage = v
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return blobMeta, props, nil
|
return blobMeta, props, nil
|
||||||
@ -292,6 +294,9 @@ func azurePropertiesToS3Meta(meta storage.BlobMetadata, props storage.BlobProper
|
|||||||
if props.ContentType != "" {
|
if props.ContentType != "" {
|
||||||
s3Metadata["Content-Type"] = props.ContentType
|
s3Metadata["Content-Type"] = props.ContentType
|
||||||
}
|
}
|
||||||
|
if props.ContentLanguage != "" {
|
||||||
|
s3Metadata["Content-Language"] = props.ContentLanguage
|
||||||
|
}
|
||||||
return s3Metadata
|
return s3Metadata
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user