From a7e4aad63215fa3d87d56241f220c33e30fe14ae Mon Sep 17 00:00:00 2001 From: Ryan O'Hara-Reid Date: Tue, 14 Mar 2017 16:07:05 +1100 Subject: [PATCH] Fixed incorrect bool declaration --- anxhttp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anxhttp.go b/anxhttp.go index 486d69a7..c9588946 100644 --- a/anxhttp.go +++ b/anxhttp.go @@ -144,7 +144,7 @@ func (a *ANX) SetAPIKeys(apiKey, apiSecret string) { if err != nil { log.Printf("%s unable to decode secret key. Authenticated API support disabled.", a.GetName()) - a.AuthenticatedAPISupport = true + a.AuthenticatedAPISupport = false return }