From d1c860cd55dfc25f922c452701209ac57435b137 Mon Sep 17 00:00:00 2001 From: Evan Langlais Date: Mon, 29 Apr 2019 20:26:51 -0400 Subject: [PATCH] Fixing emulator id --- socketManager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/socketManager.go b/socketManager.go index 314027f..a11644b 100644 --- a/socketManager.go +++ b/socketManager.go @@ -178,7 +178,7 @@ func (c *_socketClient) readIncoming() { // Read messages from gateway func getHeader() http.Header { h := http.Header{} h.Set("Content-Type", "application/json") - h.Set(headerUUID, "0000000000000002") // TODO: get this from somewhere + h.Set(headerUUID, "0000000000000001") // TODO: get this from somewhere h.Set(headerTimestamp, strconv.FormatInt(time.Now().Unix(), 10)) return h }