diff options
| -rw-r--r-- | weed/s3api/tags.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/s3api/tags.go b/weed/s3api/tags.go index 9c1e91179..979e5a80c 100644 --- a/weed/s3api/tags.go +++ b/weed/s3api/tags.go @@ -28,7 +28,7 @@ func (t *Tagging) ToTags() map[string]string { } func FromTags(tags map[string]string) (t *Tagging) { - t = &Tagging{} + t = &Tagging{Xmlns: "http://s3.amazonaws.com/doc/2006-03-01/"} for k, v := range tags { t.TagSet.Tag = append(t.TagSet.Tag, Tag{ Key: k, |
