Browse Source

fix possible nil

pull/1255/head
Chris Lu 5 years ago
parent
commit
17efa361f9
  1. 2
      weed/operation/upload_content.go

2
weed/operation/upload_content.go

@ -120,10 +120,12 @@ func doUploadData(uploadUrl string, filename string, cipher bool, data []byte, i
}, filename, contentIsGzipped, mtype, pairMap, jwt)
}
if uploadResult != nil {
uploadResult.Size = uint32(clearDataLen)
if contentIsGzipped {
uploadResult.Gzip = 1
}
}
return uploadResult, err
}

Loading…
Cancel
Save