2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-12 13:52:22 +00:00

debug: Fix EOF detection in HTTP transport

This commit is contained in:
Alexander Neumann 2017-06-09 22:32:42 +02:00
parent 6301620428
commit d3c06c39f9

View File

@ -52,7 +52,9 @@ func (rd *eofDetectReader) Close() error {
func (tr eofDetectRoundTripper) RoundTrip(req *http.Request) (res *http.Response, err error) {
res, err = tr.RoundTripper.RoundTrip(req)
res.Body = &eofDetectReader{rd: res.Body}
if res != nil && res.Body != nil {
res.Body = &eofDetectReader{rd: res.Body}
}
return res, err
}