Merge branch 'master' into add-audit-site

This commit is contained in:
Allan Roger Reid 2024-12-19 12:25:18 -08:00 committed by GitHub
commit 9611aa9b15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1204,6 +1204,10 @@ func (api objectAPIHandlers) ListObjectPartsHandler(w http.ResponseWriter, r *ht
listPartsInfo.Parts[i].ETag = tryDecryptETag(objectEncryptionKey, p.ETag, kind == crypto.S3) listPartsInfo.Parts[i].ETag = tryDecryptETag(objectEncryptionKey, p.ETag, kind == crypto.S3)
listPartsInfo.Parts[i].Size = p.ActualSize listPartsInfo.Parts[i].Size = p.ActualSize
} }
} else if _, ok := listPartsInfo.UserDefined[ReservedMetadataPrefix+"compression"]; ok {
for i, p := range listPartsInfo.Parts {
listPartsInfo.Parts[i].Size = p.ActualSize
}
} }
response := generateListPartsResponse(listPartsInfo, encodingType) response := generateListPartsResponse(listPartsInfo, encodingType)