summaryrefslogtreecommitdiffstats
path: root/matterhook/matterhook.go
diff options
context:
space:
mode:
Diffstat (limited to 'matterhook/matterhook.go')
-rw-r--r--matterhook/matterhook.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/matterhook/matterhook.go b/matterhook/matterhook.go
index f602ed44..f5133112 100644
--- a/matterhook/matterhook.go
+++ b/matterhook/matterhook.go
@@ -71,7 +71,7 @@ type Config struct {
func New(url string, config Config) *Client {
c := &Client{Url: url, In: make(chan IMessage), Out: make(chan OMessage), Config: config}
tr := &http.Transport{
- TLSClientConfig: &tls.Config{InsecureSkipVerify: config.InsecureSkipVerify},
+ TLSClientConfig: &tls.Config{InsecureSkipVerify: config.InsecureSkipVerify}, //nolint:gosec
}
c.httpclient = &http.Client{Transport: tr}
if !c.DisableServer {