aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--weed/operation/upload_content.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/operation/upload_content.go b/weed/operation/upload_content.go
index ac0b477cb..5fe99ba5b 100644
--- a/weed/operation/upload_content.go
+++ b/weed/operation/upload_content.go
@@ -169,7 +169,7 @@ func doUploadData(uploadUrl string, filename string, cipher bool, data []byte, i
uploadResult, err = upload_content(uploadUrl, func(w io.Writer) (err error) {
_, err = w.Write(data)
return
- }, filename, contentIsGzipped, 0, mtype, pairMap, jwt)
+ }, filename, contentIsGzipped, len(data), mtype, pairMap, jwt)
}
if uploadResult == nil {