Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixing emulator id
  • Loading branch information
Evan Langlais committed Apr 30, 2019
1 parent f37eb29 commit d1c860c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion socketManager.go
Expand Up @@ -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
}
Expand Down

0 comments on commit d1c860c

Please sign in to comment.