Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions getresponse/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/healthimation/go-glitch/glitch"
)

//Error codes
// Error codes
const (
ErrorAPI = "ERROR_API"

Expand Down Expand Up @@ -71,7 +71,7 @@ type getResponseClient struct {
// NewClient returns a new pushy client
func NewClient(apiKey string, timeout time.Duration) Client {
return &getResponseClient{
c: client.NewBaseClient(findGetResponse, "getresponse", true, timeout),
c: client.NewBaseClient(findGetResponse, "getresponse", true, timeout, http.DefaultTransport),
apiKey: apiKey,
}
}
Expand Down