1
0
Fork 0

Fix empty body error in mirror

This commit is contained in:
Anton Gubarev 2021-09-02 11:46:13 +03:00 committed by GitHub
parent 2b73860ea5
commit 0ac6f80b50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 2 deletions

View file

@ -204,7 +204,7 @@ func newReusableRequest(req *http.Request, maxBodySize int64) (*reusableRequest,
if req == nil {
return nil, nil, errors.New("nil input request")
}
if req.Body == nil {
if req.Body == nil || req.ContentLength == 0 {
return &reusableRequest{req: req}, nil, nil
}