From 6ad04f63653a427996372923681d17b7880be67d Mon Sep 17 00:00:00 2001 From: tangdeyi Date: Thu, 21 Mar 2024 09:23:52 +0800 Subject: [PATCH] fix(object): listobjectv2 IsTruncated required Signed-off-by: tangdeyi --- objectnode/result.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objectnode/result.go b/objectnode/result.go index cd603df24..692ebcc3d 100644 --- a/objectnode/result.go +++ b/objectnode/result.go @@ -262,7 +262,7 @@ type ListBucketResultV2 struct { KeyCount uint64 `xml:"KeyCount"` MaxKeys uint64 `xml:"MaxKeys"` Delimiter string `xml:"Delimiter,omitempty"` - IsTruncated bool `xml:"IsTruncated,omitempty"` + IsTruncated bool `xml:"IsTruncated"` Contents []*Content `xml:"Contents"` CommonPrefixes []*CommonPrefix `xml:"CommonPrefixes"` }