diff options
author | Collin Guarino <collin.guarino@gmail.com> | 2016-02-09 23:40:00 -0500 |
---|---|---|
committer | Collin Guarino <collin.guarino@gmail.com> | 2016-02-09 23:40:00 -0500 |
commit | 3ea47fb394b71978b15e44166f1abed05e83cbc5 (patch) | |
tree | 4b6c7ccfbd9f33614ca7341304d98d1f6609ed4d | |
parent | 0533ebfe36133e9ab300bd72b56c3c1427fff7c6 (diff) |
Attempt to fix memory error with SetName.
-rw-r--r-- | light.go | 5 | ||||
-rw-r--r-- | light_test.go | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -56,7 +56,10 @@ func (self *Light) SetName(name string) error { body := make(map[string]string) body["name"] = name _, _, err := self.Bridge.Put(uri, body) - return err + if err != nil { + return err + } + return nil } // Light.Off will turn the light source off diff --git a/light_test.go b/light_test.go index 20ab4b8..077dff7 100644 --- a/light_test.go +++ b/light_test.go @@ -30,5 +30,5 @@ func TestSetLightState(t *testing.T) { time.Sleep(time.Second) selectedLight.ColorLoop() - selectedLight.SetName("testing") + selectedLight.SetName("Ceiling Fan Outer") } |