summaryrefslogtreecommitdiff
path: root/gemini/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'gemini/client.go')
-rw-r--r--gemini/client.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/gemini/client.go b/gemini/client.go
index c60e92e..00e28f6 100644
--- a/gemini/client.go
+++ b/gemini/client.go
@@ -29,7 +29,7 @@ type Client struct {
// NewClient creates a gemini Client with the given TLS configuration and default MaxRedirects.
func NewClient(tlsConf *tls.Config) Client {
- if tlsConf != nil {
+ if tlsConf != nil && !tlsConf.InsecureSkipVerify {
tlsConf = tlsConf.Clone()
tlsConf.InsecureSkipVerify = true
}
@@ -116,6 +116,7 @@ func (client Client) RoundTrip(request *types.Request) (*types.Response, error)
return nil, err
}
response.Body = bytes.NewBuffer(bodybuf)
+ response.Request = request
return response, nil
}