mirror of
https://github.com/minio/minio.git
synced 2026-05-28 04:03:23 -04:00
Fix Tagging XML Unmarshalling (#8977)
AWS S3 doesn't strictly enforce the presence of URL in tagging XML. This PR updates MinIO to behave similarly. Fixes #8976
This commit is contained in:
parent
63be4709b7
commit
33767266e7
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ var (
|
|||
|
||||
// Tagging - object tagging interface
|
||||
type Tagging struct {
|
||||
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ Tagging"`
|
||||
XMLName xml.Name `xml:"Tagging"`
|
||||
TagSet TagSet `xml:"TagSet"`
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue