Correcting an error in CallGet()

This commit is contained in:
pb 2025-03-12 15:41:10 +01:00
parent a9c82bd261
commit 2d517cc594

View File

@ -82,10 +82,6 @@ func (caller *HTTPCaller) CallGet(url string, subpath string, types ...string) (
if err != nil {
return nil, err
}
err = caller.StoreResp(resp)
if err != nil {
return nil, err
}
return caller.LastResults["body"].([]byte), nil
}