From a022c3bdb6e3a44eb83131b3568bc8fbaca9487c Mon Sep 17 00:00:00 2001 From: Nick Jones Date: Mon, 12 May 2025 20:59:26 +1200 Subject: [PATCH] mount-s3 has strict XML parsing which doesn't like receiving this tag empty --- s3response/s3response.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3response/s3response.go b/s3response/s3response.go index be0c9444..09f89084 100644 --- a/s3response/s3response.go +++ b/s3response/s3response.go @@ -172,7 +172,7 @@ type ListObjectsV2Result struct { Name *string Prefix *string StartAfter *string - ContinuationToken *string + ContinuationToken *string `xml:"ContinuationToken,omitempty"` NextContinuationToken *string KeyCount *int32 MaxKeys *int32