Prechádzať zdrojové kódy

Use json.Unmarshal in event handling so errors are better.

Chris Rhodes 8 rokov pred
rodič
commit
bf9dda8404
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      wsapi.go

+ 1 - 1
wsapi.go

@@ -287,7 +287,7 @@ func (s *Session) event(messageType int, message []byte) {
 
 		// Attempt to unmarshal our event.
 		// If there is an error we should handle the event itself.
-		if err = unmarshal(e.RawData, i); err != nil {
+		if err = json.Unmarshal(e.RawData, i); err != nil {
 			log.Println(fmt.Sprintf("Unable to unmarshal event %s data: %s", e.Type, err))
 			// Ready events must fire, even if they are empty.
 			if e.Type != "READY" {