This commit is contained in:
chrislu
2022-08-31 00:24:29 -07:00
parent 870a30665b
commit 3d8b8ffced
2 changed files with 3 additions and 17 deletions

View File

@@ -106,10 +106,7 @@ func readChunkNeedle(fileUrl string, w io.Writer, offset int64, jwt string) (wri
if err != nil {
return written, err
}
defer func() {
io.Copy(io.Discard, resp.Body)
resp.Body.Close()
}()
defer util.CloseResponse(resp)
switch resp.StatusCode {
case http.StatusRequestedRangeNotSatisfiable: