Browse Source

TODO: process RESPONSE

Volodymyr Tkach 2 years ago
parent
commit
ca91c268a3
1 changed files with 2 additions and 0 deletions
  1. 2 0
      pubsub/go_reader.go

+ 2 - 0
pubsub/go_reader.go

@@ -46,6 +46,8 @@ func go_reader(c *Connection) {
 								if err := c.Connection.Close(); err != nil {
 									c.onError(err)
 								}
+							} else if resp.Type == "RESPONSE" {
+								// TODO: {"type":"RESPONSE","error":"","nonce":""}
 							} else {
 								c.onMessage(msg)
 							}