This commit is contained in:
chrislu 2022-08-31 00:09:32 -07:00
parent a54f30b6c6
commit 9c944377dc

View file

@ -60,7 +60,7 @@ func Get(url string) ([]byte, bool, error) {
if err != nil {
return nil, true, err
}
defer response.Body.Close()
defer CloseResponse(response)
var reader io.ReadCloser
switch response.Header.Get("Content-Encoding") {
@ -242,8 +242,8 @@ func ReadUrl(fileUrl string, cipherKey []byte, isContentCompressed bool, isFullC
if err != nil {
return 0, err
}
defer CloseResponse(r)
defer r.Body.Close()
if r.StatusCode >= 400 {
return 0, fmt.Errorf("%s: %s", fileUrl, r.Status)
}