From 86009cc805bcb244849019592b5e13522c854266 Mon Sep 17 00:00:00 2001 From: idk Date: Wed, 2 Feb 2022 00:53:06 -0500 Subject: [PATCH] Force SetDebug true --- Makefile | 2 +- options.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f01c104..d3c7aa4 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ USER_GH=eyedeekay -VERSION=0.32.52 +VERSION=0.32.53 packagename=gosam echo: fmt diff --git a/options.go b/options.go index fe5973c..4558659 100644 --- a/options.go +++ b/options.go @@ -186,7 +186,7 @@ func SetToPortInt(i int) func(*Client) error { func SetDebug(b bool) func(*Client) error { return func(c *Client) error { //c.debug = b - d.debug = true + c.debug = true return nil } }